From: Stefan Kost Date: Fri, 19 Nov 2010 08:23:54 +0000 (+0200) Subject: padtemplate: allow disablinbg the template name conformance checks X-Git-Tag: RELEASE-0.10.32~245 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9039c22040e1a38a3691bc4d299af427c963255;p=platform%2Fupstream%2Fgstreamer.git padtemplate: allow disablinbg the template name conformance checks --- diff --git a/gst/gstpadtemplate.c b/gst/gstpadtemplate.c index 6a18c51..1e2032b 100644 --- a/gst/gstpadtemplate.c +++ b/gst/gstpadtemplate.c @@ -256,9 +256,10 @@ gst_pad_template_dispose (GObject * object) * 'sink%d' template is automatically selected), so we need to restrict their * naming. */ -static gboolean +static inline gboolean name_is_valid (const gchar * name, GstPadPresence presence) { +#ifndef G_DISABLE_ASSERT const gchar *str; if (presence == GST_PAD_ALWAYS) { @@ -284,7 +285,7 @@ name_is_valid (const gchar * name, GstPadPresence presence) return FALSE; } } - +#endif return TRUE; }