mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
da1fe1e0dd
Better creation of pads, test and fix many other classes. Most classes work now, although might not create functional elements.
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
% ClassName
|
|
GstTagDemux
|
|
% TYPE_CLASS_NAME
|
|
GST_TYPE_TAG_DEMUX
|
|
% pads
|
|
sinkpad-simple srcpad-simple
|
|
% pkg-config
|
|
gstreamer-tag-0.10
|
|
% includes
|
|
#include <gst/tag/gsttagdemux.h>
|
|
% prototypes
|
|
static gboolean
|
|
gst_replace_identify_tag (GstTagDemux * demux,
|
|
GstBuffer * buffer, gboolean start_tag, guint * tag_size);
|
|
static GstTagDemuxResult
|
|
gst_replace_parse_tag (GstTagDemux * demux,
|
|
GstBuffer * buffer,
|
|
gboolean start_tag, guint * tag_size, GstTagList ** tags);
|
|
static GstTagList *gst_replace_merge_tags (GstTagDemux * demux,
|
|
const GstTagList * start_tags, const GstTagList * end_tags);
|
|
% declare-class
|
|
GstTagdemux *tagdemux_class = GST_TAGDEMUX (klass);
|
|
% set-methods
|
|
tagdemux_class-> = GST_DEBUG_FUNCPTR (gst_replace_);
|
|
% methods
|
|
|
|
|
|
static gboolean
|
|
gst_replace_identify_tag (GstTagDemux * demux,
|
|
GstBuffer * buffer, gboolean start_tag, guint * tag_size)
|
|
{
|
|
|
|
}
|
|
|
|
static GstTagDemuxResult
|
|
gst_replace_parse_tag (GstTagDemux * demux,
|
|
GstBuffer * buffer,
|
|
gboolean start_tag, guint * tag_size, GstTagList ** tags)
|
|
{
|
|
|
|
}
|
|
|
|
static GstTagList *
|
|
gst_replace_merge_tags (GstTagDemux * demux,
|
|
const GstTagList * start_tags, const GstTagList * end_tags)
|
|
{
|
|
|
|
}
|
|
% end
|