[Mplayer-cvslog] CVS: main/libmpdemux demux_mov.c,1.83,1.84
Michael Niedermayer CVS
michael at mplayerhq.hu
Sat Nov 23 18:32:08 CET 2002
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv6195
Modified Files:
demux_mov.c
Log Message:
reversing warning fix (requested by alex)
Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- demux_mov.c 23 Nov 2002 10:58:08 -0000 1.83
+++ demux_mov.c 23 Nov 2002 17:31:44 -0000 1.84
@@ -527,7 +527,7 @@
break;
}
case MOV_FOURCC('s','t','t','s'): {
- stream_read_dword(demuxer->stream);
+ int temp=stream_read_dword(demuxer->stream);
int len=stream_read_dword(demuxer->stream);
int i;
unsigned int pts=0;
@@ -582,7 +582,7 @@
break;
}
case MOV_FOURCC('s','t','c','o'): {
- stream_read_dword(demuxer->stream);
+ int temp=stream_read_dword(demuxer->stream);
int len=stream_read_dword(demuxer->stream);
int i;
mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sChunk offset table! (%d chunks)\n",level,"",len);
@@ -596,7 +596,7 @@
break;
}
case MOV_FOURCC('c','o','6','4'): {
- stream_read_dword(demuxer->stream);
+ int temp=stream_read_dword(demuxer->stream);
int len=stream_read_dword(demuxer->stream);
int i;
mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*s64bit chunk offset table! (%d chunks)\n",level,"",len);
More information about the MPlayer-cvslog
mailing list