From fb455242e9320e46ce19e65b53f51fe43fbe2b82 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Thu, 1 Mar 2018 15:16:55 -0500 Subject: omxvideodec: Don't drop the frame on empty payload This otherwise may lead to "No reference frame found" warning. --- omx/gstomxvideodec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index 76714ab..1b4207f 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -1788,7 +1788,9 @@ gst_omx_video_dec_loop (GstOMXVideoDec * self) } } } else if (frame != NULL) { - flow_ret = gst_video_decoder_drop_frame (GST_VIDEO_DECODER (self), frame); + /* Just ignore empty buffers, don't drop a frame for that */ + flow_ret = GST_FLOW_OK; + gst_video_codec_frame_unref (frame); frame = NULL; } -- cgit v1.2.1