mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
omxvideodec: Deallocate output buffers with the right function
This commit is contained in:
parent
d7862b927c
commit
84c6fd44d2
1 changed files with 1 additions and 1 deletions
|
@ -2027,7 +2027,7 @@ gst_omx_video_dec_set_format (GstVideoDecoder * decoder,
|
|||
return FALSE;
|
||||
if (gst_omx_port_deallocate_buffers (self->dec_in_port) != OMX_ErrorNone)
|
||||
return FALSE;
|
||||
if (gst_omx_port_deallocate_buffers (self->dec_out_port) != OMX_ErrorNone)
|
||||
if (gst_omx_video_dec_deallocate_output_buffers (self) != OMX_ErrorNone)
|
||||
return FALSE;
|
||||
if (gst_omx_port_wait_enabled (self->dec_in_port,
|
||||
1 * GST_SECOND) != OMX_ErrorNone)
|
||||
|
|
Loading…
Reference in a new issue