Mercurial > mplayer.hg
changeset 16476:2a309d6c4d34
Avoid duplicated messages from demux_avi.c and demuxer.c.
patch by Luca Barbato < lu_zero -- at -- gentoo -- at -- org >
author | diego |
---|---|
date | Tue, 13 Sep 2005 18:12:48 +0000 |
parents | 55b04cfc255c |
children | c2e0e8c6f00a |
files | libmpdemux/demux_avi.c |
diffstat | 1 files changed, 0 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- 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; }