mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
ivtc: remove transform_size, it's not needed
This commit is contained in:
parent
b11a36c6e8
commit
45cb1195a6
1 changed files with 0 additions and 17 deletions
|
@ -72,9 +72,6 @@ static GstCaps *gst_ivtc_fixate_caps (GstBaseTransform * trans,
|
||||||
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps);
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps);
|
||||||
static gboolean gst_ivtc_set_caps (GstBaseTransform * trans, GstCaps * incaps,
|
static gboolean gst_ivtc_set_caps (GstBaseTransform * trans, GstCaps * incaps,
|
||||||
GstCaps * outcaps);
|
GstCaps * outcaps);
|
||||||
static gboolean gst_ivtc_transform_size (GstBaseTransform * trans,
|
|
||||||
GstPadDirection direction, GstCaps * caps, gsize size, GstCaps * othercaps,
|
|
||||||
gsize * othersize);
|
|
||||||
static gboolean gst_ivtc_start (GstBaseTransform * trans);
|
static gboolean gst_ivtc_start (GstBaseTransform * trans);
|
||||||
static gboolean gst_ivtc_stop (GstBaseTransform * trans);
|
static gboolean gst_ivtc_stop (GstBaseTransform * trans);
|
||||||
static gboolean gst_ivtc_sink_event (GstBaseTransform * trans,
|
static gboolean gst_ivtc_sink_event (GstBaseTransform * trans,
|
||||||
|
@ -149,8 +146,6 @@ gst_ivtc_class_init (GstIvtcClass * klass)
|
||||||
GST_DEBUG_FUNCPTR (gst_ivtc_transform_caps);
|
GST_DEBUG_FUNCPTR (gst_ivtc_transform_caps);
|
||||||
base_transform_class->fixate_caps = GST_DEBUG_FUNCPTR (gst_ivtc_fixate_caps);
|
base_transform_class->fixate_caps = GST_DEBUG_FUNCPTR (gst_ivtc_fixate_caps);
|
||||||
base_transform_class->set_caps = GST_DEBUG_FUNCPTR (gst_ivtc_set_caps);
|
base_transform_class->set_caps = GST_DEBUG_FUNCPTR (gst_ivtc_set_caps);
|
||||||
base_transform_class->transform_size =
|
|
||||||
GST_DEBUG_FUNCPTR (gst_ivtc_transform_size);
|
|
||||||
base_transform_class->start = GST_DEBUG_FUNCPTR (gst_ivtc_start);
|
base_transform_class->start = GST_DEBUG_FUNCPTR (gst_ivtc_start);
|
||||||
base_transform_class->stop = GST_DEBUG_FUNCPTR (gst_ivtc_stop);
|
base_transform_class->stop = GST_DEBUG_FUNCPTR (gst_ivtc_stop);
|
||||||
base_transform_class->sink_event = GST_DEBUG_FUNCPTR (gst_ivtc_sink_event);
|
base_transform_class->sink_event = GST_DEBUG_FUNCPTR (gst_ivtc_sink_event);
|
||||||
|
@ -301,18 +296,6 @@ gst_ivtc_set_caps (GstBaseTransform * trans, GstCaps * incaps,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* transform size */
|
|
||||||
static gboolean
|
|
||||||
gst_ivtc_transform_size (GstBaseTransform * trans, GstPadDirection direction,
|
|
||||||
GstCaps * caps, gsize size, GstCaps * othercaps, gsize * othersize)
|
|
||||||
{
|
|
||||||
GstIvtc *ivtc = GST_IVTC (trans);
|
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ivtc, "transform_size");
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* states */
|
/* states */
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_ivtc_start (GstBaseTransform * trans)
|
gst_ivtc_start (GstBaseTransform * trans)
|
||||||
|
|
Loading…
Reference in a new issue