# HG changeset patch # User arpi # Date 997581390 0 # Node ID f6b80dff8c25491acbef759a27a2434fe465321e # Parent 70652cb8c40267b10bb466516379d6d00061503f ffmpeg prints moved to verbose=2 diff -r 70652cb8c402 -r f6b80dff8c25 dec_video.c --- 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;