dtsdec: Call orc_init() before trying to get target flags

This commit is contained in:
Sebastian Dröge 2010-06-14 15:32:26 +02:00
parent 1b73ff4469
commit 12856e52fd

View file

@ -948,6 +948,10 @@ gst_dtsdec_get_property (GObject * object, guint prop_id, GValue * value,
static gboolean
plugin_init (GstPlugin * plugin)
{
#if HAVE_ORC
orc_init ();
#endif
if (!gst_element_register (plugin, "dtsdec", GST_RANK_PRIMARY,
GST_TYPE_DTSDEC))
return FALSE;