Mercurial > mplayer.hg
changeset 24358:7e5e6eff5a4f
warning fix:
demux_mov.c: In function 'mov_check_file':
demux_mov.c:504: warning: label 'skip_chunk' defined but not used
author | diego |
---|---|
date | Sun, 09 Sep 2007 09:54:57 +0000 |
parents | ca0c0e094f1c |
children | 30b770392f2c |
files | libmpdemux/demux_mov.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_mov.c Sun Sep 09 09:48:51 2007 +0000 +++ b/libmpdemux/demux_mov.c Sun Sep 09 09:54:57 2007 +0000 @@ -501,7 +501,7 @@ id = be2me_32(id); mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len); } -skip_chunk: +//skip_chunk: if(!stream_skip(demuxer->stream,len-skipped)) break; ++no; }