class Gst::Caps

Public Class Methods

any() click to toggle source
# File lib/gst/caps.rb, line 20
def any
  caps = allocate
  caps.__send__(:initialize_new_any)
  caps
end
empty() click to toggle source
# File lib/gst/caps.rb, line 26
def empty
  caps = allocate
  caps.__send__(:initialize_new_empty)
  caps
end

Public Instance Methods

structures() click to toggle source
# File lib/gst/caps.rb, line 33
def structures
  size.times.collect do |i|
    get_structure(i)
  end
end