mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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:
parent
2d6296735a
commit
6dbd7c1dce
2 changed files with 8 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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) | \
|
||||
|
|
Loading…
Reference in a new issue