mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
wavenc: Set fixedcaps getcaps function on the sinkpad
wavenc does not allow to change the caps during playback and always returning the template caps is just wrong.
This commit is contained in:
parent
f8ed8dd613
commit
88203989cd
1 changed files with 1 additions and 0 deletions
|
@ -179,6 +179,7 @@ gst_wavenc_init (GstWavEnc * wavenc, GstWavEncClass * klass)
|
|||
GST_DEBUG_FUNCPTR (gst_wavenc_event));
|
||||
gst_pad_set_setcaps_function (wavenc->sinkpad,
|
||||
GST_DEBUG_FUNCPTR (gst_wavenc_sink_setcaps));
|
||||
gst_pad_use_fixed_caps (wavenc->sinkpad);
|
||||
gst_element_add_pad (GST_ELEMENT (wavenc), wavenc->sinkpad);
|
||||
|
||||
wavenc->srcpad = gst_pad_new_from_static_template (&src_factory, "src");
|
||||
|
|
Loading…
Reference in a new issue