summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-23 17:31:44 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-23 17:31:44 +0000
commit36409f7abde7fac70b79910c5ace6aa2803d1b5d (patch)
tree151786f3eb326aa40b9352e4f2516a9a5d26acfe /libmpdemux
parentc384686dbc907fc67bc7816c58185b6e0756b3ba (diff)
downloadmpv-36409f7abde7fac70b79910c5ace6aa2803d1b5d.tar.bz2
mpv-36409f7abde7fac70b79910c5ace6aa2803d1b5d.tar.xz
reversing warning fix (requested by alex)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8259 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/demux_mov.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpdemux/demux_mov.c b/libmpdemux/demux_mov.c
index 03b8ef6408..e8e315061b 100644
--- a/libmpdemux/demux_mov.c
+++ b/libmpdemux/demux_mov.c
@@ -527,7 +527,7 @@ static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak
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 @@ static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak
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 @@ static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak
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);