mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ext/libpng/gstpngdec.c: Don't use fixed caps on a sink pad.
Original commit message from CVS: 2005-10-24 Julien MOUTTE <julien@moutte.net> * ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on a sink pad.
This commit is contained in:
parent
b9e012c606
commit
1ad1739394
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-10-24 Julien MOUTTE <julien@moutte.net>
|
||||||
|
|
||||||
|
* ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
|
||||||
|
a sink pad.
|
||||||
|
|
||||||
2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-10-24 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -136,7 +136,6 @@ gst_pngdec_init (GstPngDec * pngdec)
|
||||||
gst_pngdec_sink_activate_pull);
|
gst_pngdec_sink_activate_pull);
|
||||||
gst_pad_set_chain_function (pngdec->sinkpad, gst_pngdec_chain);
|
gst_pad_set_chain_function (pngdec->sinkpad, gst_pngdec_chain);
|
||||||
gst_pad_set_event_function (pngdec->sinkpad, gst_pngdec_sink_event);
|
gst_pad_set_event_function (pngdec->sinkpad, gst_pngdec_sink_event);
|
||||||
gst_pad_use_fixed_caps (pngdec->sinkpad);
|
|
||||||
gst_element_add_pad (GST_ELEMENT (pngdec), pngdec->sinkpad);
|
gst_element_add_pad (GST_ELEMENT (pngdec), pngdec->sinkpad);
|
||||||
|
|
||||||
pngdec->srcpad = gst_pad_new_from_template (gst_static_pad_template_get
|
pngdec->srcpad = gst_pad_new_from_template (gst_static_pad_template_get
|
||||||
|
|
Loading…
Reference in a new issue