Mercurial > mplayer.hg
changeset 10087:a4b17539f908
ffsvq3 fix, dunno if this is the correct fix
author | michael |
---|---|
date | Sat, 10 May 2003 09:32:02 +0000 |
parents | 2002da982194 |
children | b84fb7055a7b |
files | libmpdemux/demux_mov.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demux_mov.c Sat May 10 00:53:14 2003 +0000 +++ b/libmpdemux/demux_mov.c Sat May 10 09:32:02 2003 +0000 @@ -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);