From c22616258e35568f82195bf95e6cff97e2b4a1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 26 Jul 2006 09:02:56 +0000 Subject: [PATCH] gst/wavparse/gstwavparse.c: #define 'fact' RIFF chunk if we are not compiling against Original commit message from CVS: * gst/wavparse/gstwavparse.c: #define 'fact' RIFF chunk if we are not compiling against -base CVS (we don't want to depend on -base CVS for this one define only, and also not for release order reasons). --- ChangeLog | 7 +++++++ gst/wavparse/gstwavparse.c | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f4ad9e64b9..f8d93932ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-07-26 Tim-Philipp Müller + + * gst/wavparse/gstwavparse.c: + #define 'fact' RIFF chunk if we are not compiling against + -base CVS (we don't want to depend on -base CVS for this + one define only, and also not for release order reasons). + 2006-07-26 Tim-Philipp Müller * ext/taglib/gstid3v2mux.cc: diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index 1e66138e50..48d244a04f 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -60,8 +60,9 @@ #include "gst/riff/riff-media.h" #include -#ifndef G_MAXUINT32 -#define G_MAXUINT32 0xffffffff +/* FIXME: remove again when we depend on -base >= 0.10.9.1 */ +#ifndef GST_RIFF_TAG_fact +#define GST_RIFF_TAG_fact GST_MAKE_FOURCC ('f','a','c','t') #endif GST_DEBUG_CATEGORY_STATIC (wavparse_debug);