class FFI::Libav::AVBitStreamFilter

Public Instance Methods

close() click to toggle source
# File lib/ffi/libav.rb, line 2259
def close
  @close
end
close=(cb) click to toggle source
# File lib/ffi/libav.rb, line 2255
def close=(cb)
  @close = cb
  self[:close] = @close
end
filter() click to toggle source
# File lib/ffi/libav.rb, line 2252
def filter
  @filter
end
filter=(cb) click to toggle source
# File lib/ffi/libav.rb, line 2248
def filter=(cb)
  @filter = cb
  self[:filter] = @filter
end
name() click to toggle source
# File lib/ffi/libav.rb, line 2245
def name
  @name.get_string(0)
end
name=(str) click to toggle source
# File lib/ffi/libav.rb, line 2241
def name=(str)
  @name = FFI::MemoryPointer.from_string(str)
  self[:name] = @name
end