mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
v4l2videoenc: Only renegotiate with upstream
When the decoder get linked further, it will receive a renegotiation event from downstream. This case is not supported and should be ignored. This fixes issues when this encoder is used inside an GstRtspServer pipeline. https://bugzilla.gnome.org/show_bug.cgi?id=796525
This commit is contained in:
parent
025a430d08
commit
6704fbb044
1 changed files with 4 additions and 0 deletions
|
@ -521,6 +521,10 @@ gst_v4l2_video_enc_negotiate (GstVideoEncoder * encoder)
|
|||
GST_DEBUG_OBJECT (self, "Negotiating %s profile and level.",
|
||||
klass->codec_name);
|
||||
|
||||
/* Only renegotiate on upstream changes */
|
||||
if (self->input_state)
|
||||
return TRUE;
|
||||
|
||||
allowed_caps = gst_pad_get_allowed_caps (GST_VIDEO_ENCODER_SRC_PAD (encoder));
|
||||
|
||||
if (allowed_caps) {
|
||||
|
|
Loading…
Reference in a new issue