1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

ffsvq3 fix, dunno if this is the correct fix

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10088 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-05-10 09:32:02 +00:00
parent 01b60d7c6e
commit 35932098ae

View File

@ -1009,7 +1009,8 @@ static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak
{ 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);