omxvideodec: Don't drop the frame on empty payload

This otherwise may lead to "No reference frame found" warning.
This commit is contained in:
Nicolas Dufresne 2018-03-01 15:16:55 -05:00
parent 32660fd294
commit fb455242e9

View file

@ -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;
}