Mercurial > mplayer.hg
changeset 1489:f6b80dff8c25
ffmpeg prints moved to verbose=2
author | arpi |
---|---|
date | Sun, 12 Aug 2001 01:56:30 +0000 |
parents | 70652cb8c402 |
children | 71424eb2b282 |
files | dec_video.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/dec_video.c Sat Aug 11 23:11:16 2001 +0000 +++ b/dec_video.c Sun Aug 12 01:56:30 2001 +0000 @@ -410,11 +410,11 @@ #ifdef USE_LIBAVCODEC case VFM_FFMPEG: { // libavcodec int got_picture=0; -if(verbose) printf("Calling ffmpeg...\n"); +if(verbose>1) printf("Calling ffmpeg...\n"); if(drop_frame<2 && in_size>0){ int ret = avcodec_decode_video(&lavc_context, &lavc_picture, &got_picture, start, in_size); -if(verbose){ +if(verbose>1){ unsigned char *x="???"; switch(lavc_context.pix_fmt){ case PIX_FMT_YUV420P: x="YUV420P";break;