playsinkconvertbin: Use gst_caps_merge() instead of gst_caps_union()
This keeps the caps order and is more efficient.
This commit is contained in:
parent
7559fb29a4
commit
6e9a302eca
@ -378,8 +378,8 @@ gst_play_sink_convert_bin_getcaps (GstPad * pad)
|
|||||||
GstCaps *peer_caps = gst_pad_get_caps_reffed (peer);
|
GstCaps *peer_caps = gst_pad_get_caps_reffed (peer);
|
||||||
gst_object_unref (peer);
|
gst_object_unref (peer);
|
||||||
if (self->converter_caps) {
|
if (self->converter_caps) {
|
||||||
ret = gst_caps_union (peer_caps, self->converter_caps);
|
gst_caps_merge (peer_caps, gst_caps_ref (self->converter_caps));
|
||||||
gst_caps_unref (peer_caps);
|
ret = peer_caps;
|
||||||
} else {
|
} else {
|
||||||
ret = peer_caps;
|
ret = peer_caps;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user