[Mplayer-cvslog] CVS: main/libmpdemux demux_mov.c,1.97,1.98
Michael Niedermayer CVS
michael at mplayerhq.hu
Sat May 10 11:32:27 CEST 2003
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv29151
Modified Files:
demux_mov.c
Log Message:
ffsvq3 fix, dunno if this is the correct fix
Index: demux_mov.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/demux_mov.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- demux_mov.c 20 Apr 2003 23:15:27 -0000 1.97
+++ demux_mov.c 10 May 2003 09:32:02 -0000 1.98
@@ -1009,7 +1009,8 @@
{ ImageDescription* id=malloc(8+trak->stdata_len);
trak->desc=id;
id->idSize=8+trak->stdata_len;
- id->cType=bswap_32(trak->fourcc);
+// id->cType=bswap_32(trak->fourcc);
+ id->cType=le2me_32(trak->fourcc);
id->version=char2short(trak->stdata,8);
id->revisionLevel=char2short(trak->stdata,10);
id->vendor=char2int(trak->stdata,12);
More information about the MPlayer-cvslog
mailing list