mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:36:13 +00:00
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.
This commit is contained in:
parent
400dc037fd
commit
87e56b7713
2 changed files with 6 additions and 5 deletions
|
@ -25,7 +25,8 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <gst/gsttagsetter.h>
|
#include <gst/gsttagsetter.h>
|
||||||
#include <gst/tag/tag.h>
|
#include <gst/tag/tag.h>
|
||||||
#include "gsttaglib.h"
|
|
||||||
|
#include "gsttaglibmux.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_tag_lib_mux_debug);
|
||||||
#define GST_CAT_DEFAULT gst_tag_lib_mux_debug
|
#define GST_CAT_DEFAULT gst_tag_lib_mux_debug
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef GST_TAG_LIB_H
|
#ifndef GST_TAG_LIB_MUX_H
|
||||||
#define GST_TAG_LIB_H
|
#define GST_TAG_LIB_MUX_H
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ typedef struct _GstTagLibMux GstTagLibMux;
|
||||||
typedef struct _GstTagLibMuxClass GstTagLibMuxClass;
|
typedef struct _GstTagLibMuxClass GstTagLibMuxClass;
|
||||||
|
|
||||||
/* Definition of structure storing data for this element. */
|
/* Definition of structure storing data for this element. */
|
||||||
typedef struct _GstTagLibMux {
|
struct _GstTagLibMux {
|
||||||
GstElement element;
|
GstElement element;
|
||||||
|
|
||||||
GstPad *srcpad;
|
GstPad *srcpad;
|
||||||
|
@ -42,7 +42,7 @@ typedef struct _GstTagLibMux {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Standard definition defining a class for this element. */
|
/* Standard definition defining a class for this element. */
|
||||||
typedef struct _GstTagLibMuxClass {
|
struct _GstTagLibMuxClass {
|
||||||
GstElementClass parent_class;
|
GstElementClass parent_class;
|
||||||
|
|
||||||
/* vfuncs */
|
/* vfuncs */
|
||||||
|
|
Loading…
Reference in a new issue