From 87e56b77134f46f59025b9bc2d5d33bea04e23e7 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 1 May 2006 11:46:33 +0000 Subject: [PATCH] docs/plugins/Makefile.am: also check .cc files for gtk-doc markup Original commit message from CVS: * docs/plugins/Makefile.am: also check .cc files for gtk-doc markup * configure.ac: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * tests/check/Makefile.am: * tests/check/elements/id3v2mux.c: (id3v2mux_suite), (main): * ext/Makefile.am: * ext/taglib/Makefile.am: * ext/taglib/gstid3v2mux.h: * gst-libs/gst/tag/gsttagmux.c: * gst-libs/gst/tag/gsttagmux.h: move taglib-based id3v2muxer to -good. Fixes #336110. --- gst-libs/gst/tag/gsttagmux.c | 3 ++- gst-libs/gst/tag/gsttagmux.h | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gst-libs/gst/tag/gsttagmux.c b/gst-libs/gst/tag/gsttagmux.c index 35ec89fe4b..5224e6c159 100644 --- a/gst-libs/gst/tag/gsttagmux.c +++ b/gst-libs/gst/tag/gsttagmux.c @@ -25,7 +25,8 @@ #include #include #include -#include "gsttaglib.h" + +#include "gsttaglibmux.h" GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug); #define GST_CAT_DEFAULT gst_tag_lib_mux_debug diff --git a/gst-libs/gst/tag/gsttagmux.h b/gst-libs/gst/tag/gsttagmux.h index 5b91a93e70..26c9de7b39 100644 --- a/gst-libs/gst/tag/gsttagmux.h +++ b/gst-libs/gst/tag/gsttagmux.h @@ -18,8 +18,8 @@ * Boston, MA 02111-1307, USA. */ -#ifndef GST_TAG_LIB_H -#define GST_TAG_LIB_H +#ifndef GST_TAG_LIB_MUX_H +#define GST_TAG_LIB_MUX_H #include @@ -29,7 +29,7 @@ typedef struct _GstTagLibMux GstTagLibMux; typedef struct _GstTagLibMuxClass GstTagLibMuxClass; /* Definition of structure storing data for this element. */ -typedef struct _GstTagLibMux { +struct _GstTagLibMux { GstElement element; GstPad *srcpad; @@ -42,7 +42,7 @@ typedef struct _GstTagLibMux { }; /* Standard definition defining a class for this element. */ -typedef struct _GstTagLibMuxClass { +struct _GstTagLibMuxClass { GstElementClass parent_class; /* vfuncs */