padtemplate: allow disablinbg the template name conformance checks

This commit is contained in:
Stefan Kost 2010-11-19 10:23:54 +02:00
parent 20c173bada
commit f9039c2204

View file

@ -256,9 +256,10 @@ gst_pad_template_dispose (GObject * object)
* 'sink%d' template is automatically selected), so we need to restrict their * 'sink%d' template is automatically selected), so we need to restrict their
* naming. * naming.
*/ */
static gboolean static inline gboolean
name_is_valid (const gchar * name, GstPadPresence presence) name_is_valid (const gchar * name, GstPadPresence presence)
{ {
#ifndef G_DISABLE_ASSERT
const gchar *str; const gchar *str;
if (presence == GST_PAD_ALWAYS) { if (presence == GST_PAD_ALWAYS) {
@ -284,7 +285,7 @@ name_is_valid (const gchar * name, GstPadPresence presence)
return FALSE; return FALSE;
} }
} }
#endif
return TRUE; return TRUE;
} }