class FFI::Libav::AVSubtitleRect

Public Instance Methods

ass() click to toggle source
# File lib/ffi/libav.rb, line 2043
def ass
  @ass.get_string(0)
end
ass=(str) click to toggle source
# File lib/ffi/libav.rb, line 2039
def ass=(str)
  @ass = FFI::MemoryPointer.from_string(str)
  self[:ass] = @ass
end
text() click to toggle source
# File lib/ffi/libav.rb, line 2036
def text
  @text.get_string(0)
end
text=(str) click to toggle source
# File lib/ffi/libav.rb, line 2032
def text=(str)
  @text = FFI::MemoryPointer.from_string(str)
  self[:text] = @text
end