mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 01:54:11 +00:00
audioencoder: Proxy the channel mask field instead of the old channel-layout field
This commit is contained in:
parent
8fe5dc53e0
commit
9d56bf7712
1 changed files with 2 additions and 2 deletions
|
@ -1205,8 +1205,8 @@ gst_audio_encoder_proxy_getcaps (GstAudioEncoder * enc, GstCaps * caps)
|
|||
gst_structure_set_value (s, "endianness", val);
|
||||
if ((val = gst_structure_get_value (allowed_s, "signed")))
|
||||
gst_structure_set_value (s, "signed", val);
|
||||
if ((val = gst_structure_get_value (allowed_s, "channel-positions")))
|
||||
gst_structure_set_value (s, "channel-positions", val);
|
||||
if ((val = gst_structure_get_value (allowed_s, "channel-mask")))
|
||||
gst_structure_set_value (s, "channel-mask", val);
|
||||
|
||||
gst_caps_merge_structure (filter_caps, s);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue