mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
mpeg2dec: Call gst_video_decoder_negotiate()
This commit is contained in:
parent
882e408340
commit
090e139048
1 changed files with 9 additions and 0 deletions
|
@ -714,6 +714,9 @@ handle_sequence (GstMpeg2dec * mpeg2dec, const mpeg2_info_t * info)
|
||||||
gst_video_decoder_set_latency (GST_VIDEO_DECODER (mpeg2dec), latency,
|
gst_video_decoder_set_latency (GST_VIDEO_DECODER (mpeg2dec), latency,
|
||||||
latency);
|
latency);
|
||||||
|
|
||||||
|
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (mpeg2dec)))
|
||||||
|
goto negotiation_fail;
|
||||||
|
|
||||||
gst_video_codec_state_unref (state);
|
gst_video_codec_state_unref (state);
|
||||||
|
|
||||||
mpeg2_custom_fbuf (mpeg2dec->decoder, 1);
|
mpeg2_custom_fbuf (mpeg2dec->decoder, 1);
|
||||||
|
@ -740,6 +743,12 @@ invalid_size:
|
||||||
sequence->width, sequence->height);
|
sequence->width, sequence->height);
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
negotiation_fail:
|
||||||
|
{
|
||||||
|
GST_WARNING_OBJECT (mpeg2dec, "Failed to negotiate with downstream");
|
||||||
|
return GST_FLOW_ERROR;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
|
Loading…
Reference in a new issue