From 6f06c87c1255c45d0fd020ff30a41b9a7e83a7d9 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Wed, 16 Jul 2003 16:08:14 +0000 Subject: actually recurse into sndfile if we are able big ladspa cleanups, mainly to comply with the buffer-frames caps proper... Original commit message from CVS: * actually recurse into sndfile if we are able * big ladspa cleanups, mainly to comply with the buffer-frames caps property, but also general cleanups - the samplerate prop is gone, if you want to set it explicitly (as in for get-based plugins) you need to use a filtered connection, just like with buffer-frames * big float2int and int2float changes for buffer-frames compatibility - I think it's quite a bit simpler * make the ossclock general, add it to gstaudio, and use it in sndfile as well i need to update mimetypes, but that's coming soon. there are some other plugins that don't support buffer-frames, i guess i need to get around to fixing them as well. --- sys/oss/gstossaudio.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/oss/gstossaudio.c') diff --git a/sys/oss/gstossaudio.c b/sys/oss/gstossaudio.c index dbb13875..e1d54c3a 100644 --- a/sys/oss/gstossaudio.c +++ b/sys/oss/gstossaudio.c @@ -27,6 +27,9 @@ plugin_init (GModule *module, GstPlugin *plugin) { gboolean ret; + if (!gst_library_load ("gstaudio")) + return FALSE; + ret = gst_osssink_factory_init (plugin); g_return_val_if_fail (ret == TRUE, FALSE); -- cgit