docs/plugins/Makefile.am: also check .cc files for gtk-doc markup
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 1 May 2006 11:46:33 +0000 (11:46 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 29 Jul 2011 09:26:06 +0000 (10:26 +0100)
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
gst-libs/gst/tag/gsttagmux.h

index 35ec89f..5224e6c 100644 (file)
@@ -25,7 +25,8 @@
 #include <string.h>
 #include <gst/gsttagsetter.h>
 #include <gst/tag/tag.h>
-#include "gsttaglib.h"
+
+#include "gsttaglibmux.h"
 
 GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug);
 #define GST_CAT_DEFAULT gst_tag_lib_mux_debug
index 5b91a93..26c9de7 100644 (file)
@@ -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 <gst/gst.h>
 
@@ -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 */