mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
audioresample: set pads as negotiable
This commit is contained in:
parent
1ef6b576c5
commit
5f74f3a82e
1 changed files with 3 additions and 0 deletions
|
@ -110,6 +110,9 @@ setup_audioresample (int channels, int inrate, int outrate, int width,
|
|||
gst_pad_set_caps (mysinkpad, caps);
|
||||
gst_pad_use_fixed_caps (mysinkpad);
|
||||
|
||||
gst_pad_set_negotiable (mysinkpad, TRUE);
|
||||
gst_pad_set_negotiable (mysrcpad, TRUE);
|
||||
|
||||
gst_pad_set_active (mysinkpad, TRUE);
|
||||
gst_pad_set_active (mysrcpad, TRUE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue