mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
v4l2videodec: Protect against null pool in _stop
This may happen if the negotiation fails, as we will have never created the pools.
This commit is contained in:
parent
d5f72418c8
commit
9ad90f3bf2
1 changed files with 4 additions and 2 deletions
|
@ -218,8 +218,10 @@ gst_v4l2_video_enc_stop (GstVideoEncoder * encoder)
|
||||||
gst_v4l2_object_stop (self->v4l2output);
|
gst_v4l2_object_stop (self->v4l2output);
|
||||||
gst_v4l2_object_stop (self->v4l2capture);
|
gst_v4l2_object_stop (self->v4l2capture);
|
||||||
|
|
||||||
gst_v4l2_buffer_pool_flush (self->v4l2output->pool);
|
if (self->v4l2output->pool)
|
||||||
gst_v4l2_buffer_pool_flush (self->v4l2capture->pool);
|
gst_v4l2_buffer_pool_flush (self->v4l2output->pool);
|
||||||
|
if (self->v4l2capture->pool)
|
||||||
|
gst_v4l2_buffer_pool_flush (self->v4l2capture->pool);
|
||||||
|
|
||||||
if (self->input_state) {
|
if (self->input_state) {
|
||||||
gst_video_codec_state_unref (self->input_state);
|
gst_video_codec_state_unref (self->input_state);
|
||||||
|
|
Loading…
Reference in a new issue