mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
omxvideoenc: revert draining on ALLOCATION and DRAIN query
My latest patch introduces some regressions which I have no time to debug properly at the moment so just revert it for now.
This commit is contained in:
parent
df8ba87025
commit
d0bc3ed840
1 changed files with 0 additions and 27 deletions
|
@ -231,8 +231,6 @@ static GstCaps *gst_omx_video_enc_getcaps (GstVideoEncoder * encoder,
|
||||||
GstCaps * filter);
|
GstCaps * filter);
|
||||||
static gboolean gst_omx_video_enc_decide_allocation (GstVideoEncoder * encoder,
|
static gboolean gst_omx_video_enc_decide_allocation (GstVideoEncoder * encoder,
|
||||||
GstQuery * query);
|
GstQuery * query);
|
||||||
static gboolean gst_omx_video_enc_sink_query (GstVideoEncoder * encoder,
|
|
||||||
GstQuery * query);
|
|
||||||
|
|
||||||
static GstFlowReturn gst_omx_video_enc_drain (GstOMXVideoEnc * self);
|
static GstFlowReturn gst_omx_video_enc_drain (GstOMXVideoEnc * self);
|
||||||
|
|
||||||
|
@ -490,8 +488,6 @@ gst_omx_video_enc_class_init (GstOMXVideoEncClass * klass)
|
||||||
video_encoder_class->getcaps = GST_DEBUG_FUNCPTR (gst_omx_video_enc_getcaps);
|
video_encoder_class->getcaps = GST_DEBUG_FUNCPTR (gst_omx_video_enc_getcaps);
|
||||||
video_encoder_class->decide_allocation =
|
video_encoder_class->decide_allocation =
|
||||||
GST_DEBUG_FUNCPTR (gst_omx_video_enc_decide_allocation);
|
GST_DEBUG_FUNCPTR (gst_omx_video_enc_decide_allocation);
|
||||||
video_encoder_class->sink_query =
|
|
||||||
GST_DEBUG_FUNCPTR (gst_omx_video_enc_sink_query);
|
|
||||||
|
|
||||||
klass->cdata.type = GST_OMX_COMPONENT_TYPE_FILTER;
|
klass->cdata.type = GST_OMX_COMPONENT_TYPE_FILTER;
|
||||||
klass->cdata.default_sink_template_caps =
|
klass->cdata.default_sink_template_caps =
|
||||||
|
@ -3299,26 +3295,3 @@ gst_omx_video_enc_decide_allocation (GstVideoEncoder * encoder,
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
|
||||||
gst_omx_video_enc_sink_query (GstVideoEncoder * encoder, GstQuery * query)
|
|
||||||
{
|
|
||||||
GstOMXVideoEnc *self = GST_OMX_VIDEO_ENC (encoder);
|
|
||||||
|
|
||||||
switch (GST_QUERY_TYPE (query)) {
|
|
||||||
case GST_QUERY_ALLOCATION:
|
|
||||||
case GST_QUERY_DRAIN:
|
|
||||||
{
|
|
||||||
GST_DEBUG_OBJECT (encoder, "%s query: drain encoder",
|
|
||||||
GST_QUERY_TYPE_NAME (query));
|
|
||||||
|
|
||||||
gst_omx_video_enc_drain (self);
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return
|
|
||||||
GST_VIDEO_ENCODER_CLASS (gst_omx_video_enc_parent_class)->sink_query
|
|
||||||
(encoder, query);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue