class FFI::Libav::AVProfile

Public Instance Methods

name() click to toggle source
# File lib/ffi/libav.rb, line 1844
def name
  @name.get_string(0)
end
name=(str) click to toggle source
# File lib/ffi/libav.rb, line 1840
def name=(str)
  @name = FFI::MemoryPointer.from_string(str)
  self[:name] = @name
end