celtdec: Move define into the C file so it doesn't show up in the docs

This commit is contained in:
Jan Schmidt 2009-02-27 11:55:34 +00:00
parent efc9b324db
commit b59e983751
2 changed files with 2 additions and 2 deletions

View File

@ -48,6 +48,8 @@
GST_DEBUG_CATEGORY_STATIC (celtdec_debug); GST_DEBUG_CATEGORY_STATIC (celtdec_debug);
#define GST_CAT_DEFAULT celtdec_debug #define GST_CAT_DEFAULT celtdec_debug
#define DEC_MAX_FRAME_SIZE 2000
static GstStaticPadTemplate celt_dec_src_factory = static GstStaticPadTemplate celt_dec_src_factory =
GST_STATIC_PAD_TEMPLATE ("src", GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC, GST_PAD_SRC,

View File

@ -41,8 +41,6 @@ G_BEGIN_DECLS
typedef struct _GstCeltDec GstCeltDec; typedef struct _GstCeltDec GstCeltDec;
typedef struct _GstCeltDecClass GstCeltDecClass; typedef struct _GstCeltDecClass GstCeltDecClass;
#define DEC_MAX_FRAME_SIZE 2000
struct _GstCeltDec { struct _GstCeltDec {
GstElement element; GstElement element;