gstreamer-0.12.1.2: Binding to the GStreamer open source multimedia framework.

Maintainergtk2hs-devel@lists.sourceforge.net Stability : alpha Portability : portable (depends on GHC)
Safe HaskellNone

Media.Streaming.GStreamer.Core.Registry

Description

 

Documentation

registryGetPathList :: RegistryClass registry => registry -> IO [FilePath]Source

registryGetPluginList :: RegistryClass registry => registry -> IO [Plugin]Source

registryAddPlugin :: (RegistryClass registry, PluginClass plugin) => registry -> plugin -> IO BoolSource

registryRemovePlugin :: (RegistryClass registry, PluginClass plugin) => registry -> plugin -> IO ()Source

registryPluginFilter :: RegistryClass registry => registry -> PluginFilter -> Bool -> IO [Plugin]Source

registryFeatureFilter :: RegistryClass registry => registry -> PluginFeatureFilter -> Bool -> IO [PluginFeature]Source

registryScanPath :: RegistryClass registry => registry -> FilePath -> IO BoolSource

registryLookup :: RegistryClass registry => registry -> FilePath -> IO PluginSource

registryRemoveFeature :: (RegistryClass registry, PluginFeatureClass pluginFeature) => registry -> pluginFeature -> IO ()Source

registryAddFeature :: (RegistryClass registry, PluginFeatureClass pluginFeature) => registry -> pluginFeature -> IO BoolSource

onRegistryFeatureAdded :: RegistryClass registry => registry -> (PluginFeature -> IO ()) -> IO (ConnectId registry)Source

afterRegistryFeatureAdded :: RegistryClass registry => registry -> (PluginFeature -> IO ()) -> IO (ConnectId registry)Source

onRegistryPluginAdded :: RegistryClass registry => registry -> (Plugin -> IO ()) -> IO (ConnectId registry)Source

afterRegistryPluginAdded :: RegistryClass registry => registry -> (Plugin -> IO ()) -> IO (ConnectId registry)Source