mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
videoencoder: Release video frame when ->handle return ERROR or DROPPED
https://bugzilla.gnome.org/show_bug.cgi?id=760666
This commit is contained in:
parent
62053852de
commit
63517d0ed3
1 changed files with 8 additions and 1 deletions
|
@ -212,7 +212,9 @@ static void gst_video_encoder_init (GstVideoEncoder * enc,
|
|||
GstVideoEncoderClass * klass);
|
||||
|
||||
static void gst_video_encoder_finalize (GObject * object);
|
||||
|
||||
static void
|
||||
gst_video_encoder_release_frame (GstVideoEncoder * enc,
|
||||
GstVideoCodecFrame * frame);
|
||||
static gboolean gst_video_encoder_setcaps (GstVideoEncoder * enc,
|
||||
GstCaps * caps);
|
||||
static GstCaps *gst_video_encoder_sink_getcaps (GstVideoEncoder * encoder,
|
||||
|
@ -1479,6 +1481,11 @@ gst_video_encoder_chain (GstPad * pad, GstObject * parent, GstBuffer * buf)
|
|||
|
||||
ret = klass->handle_frame (encoder, frame);
|
||||
|
||||
if (ret == GST_VIDEO_ENCODER_FLOW_DROPPED || ret == GST_FLOW_ERROR) {
|
||||
GST_INFO_OBJECT (encoder, "Dropping frame %p", frame);
|
||||
gst_video_encoder_release_frame (encoder, frame);
|
||||
}
|
||||
|
||||
done:
|
||||
GST_VIDEO_ENCODER_STREAM_UNLOCK (encoder);
|
||||
|
||||
|
|
Loading…
Reference in a new issue