[MPlayer-cvslog] r24378 - trunk/libmpdemux/demux_mov.c

diego subversion at mplayerhq.hu
Sun Sep 9 11:54:57 CEST 2007


Author: diego
Date: Sun Sep  9 11:54:57 2007
New Revision: 24378

Log:
warning fix:
demux_mov.c: In function 'mov_check_file':
demux_mov.c:504: warning: label 'skip_chunk' defined but not used


Modified:
   trunk/libmpdemux/demux_mov.c

Modified: trunk/libmpdemux/demux_mov.c
==============================================================================
--- trunk/libmpdemux/demux_mov.c	(original)
+++ trunk/libmpdemux/demux_mov.c	Sun Sep  9 11:54:57 2007
@@ -501,7 +501,7 @@ static int mov_check_file(demuxer_t* dem
 	  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;
     }



More information about the MPlayer-cvslog mailing list