ext/mad/gstmad.c: fix mad plugin crashing on Sun (fixes #148289)

Original commit message from CVS:
reviewed by Benjamin Otte  <otte@gnome.org>
* ext/mad/gstmad.c:
fix mad plugin crashing on Sun (fixes #148289)
This commit is contained in:
Benjamin Otte 2004-07-25 14:08:58 +00:00
parent 2d6296735a
commit 6dbd7c1dce
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2004-07-25 Sebastien Cote <sc5@hermes.usherb.ca>
reviewed by Benjamin Otte <otte@gnome.org>
* ext/mad/gstmad.c:
fix mad plugin crashing on Sun (fixes #148289)
2004-07-25 Steve Lhomme <steve.lhomme@free.fr>
* gst/avi/avi.def:
* gst/avi/avi.vcproj:

View file

@ -982,7 +982,7 @@ gst_mad_check_restart (GstMad * mad)
* This code has been kindly relicensed to LGPL by Thibaut Mattern and
* Bastien Nocera
*/
#define BE_32(x) GINT32_FROM_BE(*(gint*)(x))
#define BE_32(x) GST_READ_UINT32_BE(x)
#define FOURCC_TAG( ch0, ch1, ch2, ch3 ) \
( (long)(unsigned char)(ch3) | \