mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
docs/pwg/: Applied patch from Christophe Fergeau, fixes #333416
Original commit message from CVS: * docs/pwg/advanced-tagging.xml: * docs/pwg/building-pads.xml: Applied patch from Christophe Fergeau, fixes #333416
This commit is contained in:
parent
7a88e2a762
commit
2ee0cdf799
3 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-03-07 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* docs/pwg/advanced-tagging.xml:
|
||||||
|
* docs/pwg/building-pads.xml:
|
||||||
|
Applied patch from Christophe Fergeau, fixes #333416
|
||||||
|
|
||||||
2006-03-07 Wim Taymans <wim@fluendo.com>
|
2006-03-07 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* docs/libs/gstreamer-libs-sections.txt:
|
* docs/libs/gstreamer-libs-sections.txt:
|
||||||
|
|
|
@ -273,10 +273,10 @@ gst_my_filter_loopfunc (GstElement *element)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* merge tags with the ones retrieved from the application */
|
/* merge tags with the ones retrieved from the application */
|
||||||
if (gst_tag_setter_get_list (tagsetter)) {
|
if ((gst_tag_setter_get_tag_list (tagsetter)) {
|
||||||
gst_tag_list_insert (taglist,
|
gst_tag_list_insert (taglist,
|
||||||
gst_tag_setter_get_list (tagsetter),
|
gst_tag_setter_get_tag_list (tagsetter),
|
||||||
gst_tag_setter_get_merge_mode (tagsetter));
|
gst_tag_setter_get_tag_merge_mode (tagsetter));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* write tags */
|
/* write tags */
|
||||||
|
|
|
@ -84,9 +84,9 @@ static gboolean gst_my_filter_event (GstPad *pad,
|
||||||
<!-- example-begin init.func d -->
|
<!-- example-begin init.func d -->
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_my_filter_init (GstMyFilter *filter)
|
gst_my_filter_init (GstMyFilter *filter, GstMyFilterClass *filter_klass)
|
||||||
{
|
{
|
||||||
GstElementClass *klass = GST_ELEMENT_GET_CLASS (filter);
|
GstElementClass *klass = GST_ELEMENT_CLASS (filter_klass);
|
||||||
|
|
||||||
/* pad through which data comes in to the element */
|
/* pad through which data comes in to the element */
|
||||||
filter->sinkpad = gst_pad_new_from_template (
|
filter->sinkpad = gst_pad_new_from_template (
|
||||||
|
|
Loading…
Reference in a new issue