omxvideoenc: 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-05 13:49:18 -05:00
parent fb455242e9
commit 4e9dca0761

View file

@ -1340,7 +1340,9 @@ gst_omx_video_enc_handle_output_frame (GstOMXVideoEnc * self, GstOMXPort * port,
flow_ret = gst_pad_push (GST_VIDEO_ENCODER_SRC_PAD (self), outbuf);
}
} else if (frame != NULL) {
flow_ret = gst_video_encoder_finish_frame (GST_VIDEO_ENCODER (self), frame);
/* Just ignore empty buffers, don't drop a frame for that */
flow_ret = GST_FLOW_OK;
gst_video_codec_frame_unref (frame);
}
return flow_ret;