[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Original]
Re: [MPlayer-users] msadpcm crash with Solaris/SPARC
Am Mittwoch, 23. Oktober 2002, 14:48:15 Uhr MET, schrieb Götz Waschk:
> > > The right one was this:
> > > #define LE_16(x) (le2me_16((x)[1]+(256*(x)[0])))
> > does it work with it?
> Yes, it's working fine.
You've mixed this up in CVS:
Current CVS contains this line:
#define LE_16(x) (le2me_16((x)[0]+(256*((x)[1]))))
but the right working macro is this one:
#define LE_16(x) (le2me_16((x)[1]+(256*((x)[0]))))
Please apply the attached patch.
--
Götz Waschk <> master of computer science <> University of Rostock
http://wwwtec.informatik.uni-rostock.de/~waschk/waschk.asc for PGP key
--> Logout Fascism! <--
mplayer-msadpcm-byteswap.patch
Description: Text document
- [MPlayer-users] msadpcm crash with Solaris/SPARC, Götz Waschk, 2002/10/23
- Re: [MPlayer-users] msadpcm crash with Solaris/SPARC, Hampa Hug, 2002/10/23
- Re: [MPlayer-users] msadpcm crash with Solaris/SPARC, Diego Zuccato, 2002/10/25
- Re: [MPlayer-users] msadpcm crash with Solaris/SPARC, Moritz Bunkus, 2002/10/25
- Re: [MPlayer-users] msadpcm crash with Solaris/SPARC - FIXED, Götz Waschk, 2002/10/25