mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
gstwavparse.c: it did not build in system with Glib < 2.4 because it used the macro G_MAXUINT32. Now we define the ma...
Original commit message from CVS: gstwavparse.c: it did not build in system with Glib < 2.4 because it used the macro G_MAXUINT32. Now we define the macro if it is not yet defined.
This commit is contained in:
parent
993092788c
commit
a1691c1f55
1 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,10 @@
|
|||
#include "gst/riff/riff-ids.h"
|
||||
#include "gst/riff/riff-media.h"
|
||||
|
||||
#ifndef G_MAXUINT32
|
||||
#define G_MAXUINT32 0xffffffff
|
||||
#endif
|
||||
|
||||
GST_DEBUG_CATEGORY (wavparse_debug);
|
||||
#define GST_CAT_DEFAULT (wavparse_debug)
|
||||
|
||||
|
|
Loading…
Reference in a new issue