summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-29 12:01:26 +0000
committerattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-29 12:01:26 +0000
commit333832e130e01e62b7534e9e2edd485bfb884368 (patch)
tree0eb52d34ab241b8d83eb0300d190a49a826accd8 /mencoder.c
parent0a71883da42de1e710d4e7818362dde11c3a8909 (diff)
downloadmpv-333832e130e01e62b7534e9e2edd485bfb884368.tar.bz2
mpv-333832e130e01e62b7534e9e2edd485bfb884368.tar.xz
* changes mencoder's exit code on explicit kill to 2
* add quiet/noquiet to mencoder * dont depend targets on themselfs patch by Oswald Buddenhagen <ossi@kde.org> additionaly moved quiet/noquiet and v/verbose to cfg-common.h git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11876 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index 0bfe7ace97..c376a83f01 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -129,6 +129,7 @@ int out_file_format=MUXER_TYPE_AVI; // default to AVI
//void resync_audio_stream(sh_audio_t *sh_audio){}
int verbose=0; // must be global!
+int quiet=0;
double video_time_usage=0;
double vout_time_usage=0;
double max_video_time_usage=0;
@@ -317,7 +318,7 @@ static double end_at;
static void exit_sighandler(int x){
at_eof=1;
- interrupted=1;
+ interrupted=2; /* 1 means error */
}
static muxer_t* muxer=NULL;
@@ -1376,6 +1377,7 @@ if(sh_audio && !demuxer2){
(int)demuxer->filepos,
(int)demuxer->movi_end);
#else
+ if(!quiet) {
if(verbose>0) {
mp_msg(MSGT_AVSYNC,MSGL_STATUS,"Pos:%6.1fs %6df (%2d%%) %3dfps Trem:%4dmin %3dmb A-V:%5.3f [%d:%d] A/Vms %d/%d D/B/S %d/%d/%d \r",
mux_v->timer, decoded_frameno, (int)(p*100),
@@ -1398,6 +1400,7 @@ if(sh_audio && !demuxer2){
(mux_v->timer>1) ? (int)(mux_v->size/mux_v->timer/125) : 0,
(mux_a && mux_a->timer>1) ? (int)(mux_a->size/mux_a->timer/125) : 0
);
+ }
#endif
}
fflush(stdout);