From deb9e7bb3048247ccf1ecc71e8ebbac15bb1afa3 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Fri, 25 Sep 2009 17:02:53 +0200 Subject: [PATCH] aacparse: forego (bogus) parsing of already parsed (raw) input --- gst/aacparse/gstbaseparse.c | 32 +++++++++++++++++++++++++++++++- gst/aacparse/gstbaseparse.h | 1 + 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/gst/aacparse/gstbaseparse.c b/gst/aacparse/gstbaseparse.c index cdd8b1822c..333485f9a7 100644 --- a/gst/aacparse/gstbaseparse.c +++ b/gst/aacparse/gstbaseparse.c @@ -201,6 +201,7 @@ struct _GstBaseParsePrivate GstFormat duration_fmt; guint min_frame_size; + gboolean passthrough; gboolean discont; gboolean flushing; @@ -405,6 +406,7 @@ gst_base_parse_init (GstBaseParse * parse, GstBaseParseClass * bclass) parse->priv->pad_mode = GST_ACTIVATE_NONE; parse->priv->duration = -1; parse->priv->min_frame_size = 1; + parse->priv->passthrough = FALSE; parse->priv->discont = FALSE; parse->priv->flushing = FALSE; parse->priv->offset = 0; @@ -919,7 +921,11 @@ gst_base_parse_chain (GstPad * pad, GstBuffer * buffer) if (G_LIKELY (buffer)) { GST_LOG_OBJECT (parse, "buffer size: %d, offset = %lld", GST_BUFFER_SIZE (buffer), GST_BUFFER_OFFSET (buffer)); - gst_adapter_push (parse->adapter, buffer); + if (G_UNLIKELY (parse->priv->passthrough)) { + buffer = gst_buffer_make_metadata_writable (buffer); + return gst_base_parse_push_buffer (parse, buffer); + } else + gst_adapter_push (parse->adapter, buffer); } /* Parse and push as many frames as possible */ @@ -1410,6 +1416,30 @@ gst_base_parse_set_min_frame_size (GstBaseParse * parse, guint min_size) GST_BASE_PARSE_UNLOCK (parse); } +/** + * gst_base_transform_set_passthrough: + * @trans: the #GstBaseTransform to set + * @passthrough: boolean indicating passthrough mode. + * + * Set passthrough mode for this filter by default. This is mostly + * useful for filters that do not care about negotiation. + * + * Always TRUE for filters which don't implement either a transform + * or transform_ip method. + * + * MT safe. + */ +void +gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough) +{ + g_return_if_fail (parse != NULL); + + GST_BASE_PARSE_LOCK (parse); + parse->priv->passthrough = passthrough; + GST_LOG_OBJECT (parse, "set passthrough: %d", passthrough); + GST_BASE_PARSE_UNLOCK (parse); +} + /** * gst_base_parse_get_querytypes: diff --git a/gst/aacparse/gstbaseparse.h b/gst/aacparse/gstbaseparse.h index 9d53f07b22..6363f1c687 100644 --- a/gst/aacparse/gstbaseparse.h +++ b/gst/aacparse/gstbaseparse.h @@ -234,6 +234,7 @@ void gst_base_parse_set_duration (GstBaseParse *parse, void gst_base_parse_set_min_frame_size (GstBaseParse *parse, guint min_size); +void gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough); G_END_DECLS