class Gst::Registry

Public Instance Methods

get_features(name_or_type) click to toggle 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