# File gstreamer/sample/gst-inspect.rb, line 231
def print_element_list
    Gst::Registry.each_plugin do |p|
        puts p.name + ":" 
        prefix { p.each_feature { |f| puts f } } 
    end
end