d3d11videosink: Don't clear prepared buffer on unlock_stop()
That can be called between prepare() and render() which results in unexpected error flow return Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4583>
This commit is contained in:
parent
b05659859a
commit
ebcebe548d
@ -1228,8 +1228,6 @@ gst_d3d11_video_sink_unlock_stop (GstBaseSink * sink)
|
|||||||
if (self->window)
|
if (self->window)
|
||||||
gst_d3d11_window_unlock_stop (self->window);
|
gst_d3d11_window_unlock_stop (self->window);
|
||||||
|
|
||||||
gst_clear_buffer (&self->prepared_buffer);
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1442,6 +1440,8 @@ gst_d3d11_video_sink_show_frame (GstVideoSink * sink, GstBuffer * buf)
|
|||||||
ret = GST_FLOW_ERROR;
|
ret = GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gst_clear_buffer (&self->prepared_buffer);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user