mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 21:12:26 +00:00
rtph263ppay: Don't pass upstream filter caps to downstream
Downstream usually can't accept video/x-h263 but only application/x-rtp, so we would always get an empty intersection here. https://bugzilla.gnome.org/show_bug.cgi?id=702632
This commit is contained in:
parent
eea7192e26
commit
0cc77d8e30
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ gst_rtp_h263p_pay_sink_getcaps (GstRTPBasePayload * payload, GstPad * pad,
|
|||
rtph263ppay = GST_RTP_H263P_PAY (payload);
|
||||
|
||||
peercaps =
|
||||
gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
|
||||
gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), NULL);
|
||||
|
||||
/* if we're just outputting to udpsink or fakesink or so, we should also
|
||||
* accept any input compatible with our sink template caps */
|
||||
|
|
Loading…
Reference in a new issue