# HG changeset patch # User diego # Date 1126635168 0 # Node ID 2a309d6c4d340be1fd7373a5b189cdf84596da00 # Parent 55b04cfc255c84be4b5a908c7bfb88992cd3e9b7 Avoid duplicated messages from demux_avi.c and demuxer.c. patch by Luca Barbato < lu_zero -- at -- gentoo -- at -- org > diff -r 55b04cfc255c -r 2a309d6c4d34 libmpdemux/demux_avi.c --- a/libmpdemux/demux_avi.c Tue Sep 13 16:16:13 2005 +0000 +++ b/libmpdemux/demux_avi.c Tue Sep 13 18:12:48 2005 +0000 @@ -612,16 +612,6 @@ mp_msg(MSGT_DEMUX,MSGL_V,"AVI video size=%lu (%lu) audio size=%lu\n",vsize,priv->numberofframes,asize); sh_video->i_bps=(float)vsize/(sh_video->frametime*priv->numberofframes); } - - mp_msg(MSGT_DEMUX,MSGL_INFO,"VIDEO: [%.4s] %ldx%ld %dbpp %5.3f fps %5.1f kbps (%4.1f kbyte/s)\n", - (char *)&sh_video->bih->biCompression, - sh_video->bih->biWidth, - sh_video->bih->biHeight, - sh_video->bih->biBitCount, - sh_video->fps, - sh_video->i_bps*0.008f, - sh_video->i_bps/1024.0f ); - return demuxer; }