mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
ext/musepack/: First include the libmpcdec headers before everything else as they #define TRUE and FALSE unconditiona...
Original commit message from CVS: * ext/musepack/gstmusepackdec.h: * ext/musepack/gstmusepackreader.c: First include the libmpcdec headers before everything else as they #define TRUE and FALSE unconditionally and we otherwise get conflicts with the ones that GLib defines.
This commit is contained in:
parent
23a2e7d7ad
commit
82dc68af48
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-01-26 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/musepack/gstmusepackdec.h:
|
||||
* ext/musepack/gstmusepackreader.c:
|
||||
First include the libmpcdec headers before everything else as they
|
||||
#define TRUE and FALSE unconditionally and we otherwise get conflicts
|
||||
with the ones that GLib defines.
|
||||
|
||||
2008-01-26 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#ifndef __GST_MUSEPACK_DEC_H__
|
||||
#define __GST_MUSEPACK_DEC_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <mpcdec/mpcdec.h>
|
||||
#include <gst/gst.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
|
|
@ -21,10 +21,10 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gstmusepackreader.h"
|
||||
#include <gst/gst.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "gstmusepackreader.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (musepackdec_debug);
|
||||
#define GST_CAT_DEFAULT musepackdec_debug
|
||||
|
|
Loading…
Reference in a new issue