1
mirror of https://github.com/mpv-player/mpv synced 2024-10-18 10:25:02 +02:00

ffmpeg prints moved to verbose=2

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1490 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-08-12 01:56:30 +00:00
parent addc76186c
commit 194792ed8e

View File

@ -410,11 +410,11 @@ switch(sh_video->codec->driver){
#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;