diff --git a/omx/gstomxh264enc.c b/omx/gstomxh264enc.c index 3c49cd9e58..94ba2dd151 100644 --- a/omx/gstomxh264enc.c +++ b/omx/gstomxh264enc.c @@ -538,6 +538,11 @@ gst_omx_h264_enc_handle_output_frame (GstOMXVideoEnc * self, GstOMXPort * port, gst_buffer_unmap (hdrs, &map); l = g_list_append (l, hdrs); gst_video_encoder_set_headers (GST_VIDEO_ENCODER (self), l); + + if (frame) + gst_video_codec_frame_unref (frame); + + return GST_FLOW_OK; } }