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:
Ramon Garcia Fernandez 2004-10-02 21:34:00 +00:00
parent 993092788c
commit a1691c1f55

View file

@ -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)