load resample lib at runtime
authorDavid I. Lehn <dlehn@users.sourceforge.net>
Sat, 12 Jan 2002 03:29:57 +0000 (03:29 +0000)
committerDavid I. Lehn <dlehn@users.sourceforge.net>
Sat, 12 Jan 2002 03:29:57 +0000 (03:29 +0000)
Original commit message from CVS:
* load resample lib at runtime

gst/audioscale/gstaudioscale.c

index 587150acf49f1cedf1dad90b51f7f9509a9e23c0..9e3189223d440511aef3876473c7e8a9ee153862 100644 (file)
@@ -348,6 +348,13 @@ plugin_init (GModule *module, GstPlugin *plugin)
   g_return_val_if_fail(factory != NULL, FALSE);
   gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
 
+  /* load support library */
+  if (!gst_library_load ("gstresample"))
+  {
+    gst_info ("audioscale: could not load support library: 'gstresample'\n");
+    return FALSE;
+  }
+
   return TRUE;
 }