class FFI::Libav::AVHWAccel

Public Instance Methods

decode_slice() click to toggle source
# File lib/ffi/libav.rb, line 1987
def decode_slice
  @decode_slice
end
decode_slice=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1983
def decode_slice=(cb)
  @decode_slice = cb
  self[:decode_slice] = @decode_slice
end
end_frame() click to toggle source
# File lib/ffi/libav.rb, line 1994
def end_frame
  @end_frame
end
end_frame=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1990
def end_frame=(cb)
  @end_frame = cb
  self[:end_frame] = @end_frame
end
name() click to toggle source
# File lib/ffi/libav.rb, line 1973
def name
  @name.get_string(0)
end
name=(str) click to toggle source
# File lib/ffi/libav.rb, line 1969
def name=(str)
  @name = FFI::MemoryPointer.from_string(str)
  self[:name] = @name
end
start_frame() click to toggle source
# File lib/ffi/libav.rb, line 1980
def start_frame
  @start_frame
end
start_frame=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1976
def start_frame=(cb)
  @start_frame = cb
  self[:start_frame] = @start_frame
end