From 84c6fd44d26efeed5e7f9728a354504fea62e57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 15 Mar 2013 10:38:43 +0100 Subject: [PATCH] omxvideodec: Deallocate output buffers with the right function --- omx/gstomxvideodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index a3ea2f44f5..89ef59bda3 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -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)