class Gst::Registry
Public Instance Methods
Source
# File lib/gst/registry.rb, line 20 def get_features(name_or_type) if name_or_type.is_a?(GLib::Type) type = name_or_type get_feature_list(type) else name = name_or_type get_feature_list_by_plugin(name) end end