class FFI::Libav::AVCodec

Public Instance Methods

close() click to toggle source
# File lib/ffi/libav.rb, line 1944
def close
  @close
end
close=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1940
def close=(cb)
  @close = cb
  self[:close] = @close
end
decode() click to toggle source
# File lib/ffi/libav.rb, line 1937
def decode
  @decode
end
decode=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1933
def decode=(cb)
  @decode = cb
  self[:decode] = @decode
end
encode2() click to toggle source
# File lib/ffi/libav.rb, line 1930
def encode2
  @encode2
end
encode2=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1926
def encode2=(cb)
  @encode2 = cb
  self[:encode2] = @encode2
end
encode_sub() click to toggle source
# File lib/ffi/libav.rb, line 1923
def encode_sub
  @encode_sub
end
encode_sub=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1919
def encode_sub=(cb)
  @encode_sub = cb
  self[:encode_sub] = @encode_sub
end
flush() click to toggle source
# File lib/ffi/libav.rb, line 1951
def flush
  @flush
end
flush=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1947
def flush=(cb)
  @flush = cb
  self[:flush] = @flush
end
init() click to toggle source
# File lib/ffi/libav.rb, line 1916
def init
  @init
end
init=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1912
def init=(cb)
  @init = cb
  self[:init] = @init
end
init_static_data() click to toggle source
# File lib/ffi/libav.rb, line 1909
def init_static_data
  @init_static_data
end
init_static_data=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1905
def init_static_data=(cb)
  @init_static_data = cb
  self[:init_static_data] = @init_static_data
end
init_thread_copy() click to toggle source
# File lib/ffi/libav.rb, line 1895
def init_thread_copy
  @init_thread_copy
end
init_thread_copy=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1891
def init_thread_copy=(cb)
  @init_thread_copy = cb
  self[:init_thread_copy] = @init_thread_copy
end
long_name() click to toggle source
# File lib/ffi/libav.rb, line 1888
def long_name
  @long_name.get_string(0)
end
long_name=(str) click to toggle source
# File lib/ffi/libav.rb, line 1884
def long_name=(str)
  @long_name = FFI::MemoryPointer.from_string(str)
  self[:long_name] = @long_name
end
name() click to toggle source
# File lib/ffi/libav.rb, line 1881
def name
  @name.get_string(0)
end
name=(str) click to toggle source
# File lib/ffi/libav.rb, line 1877
def name=(str)
  @name = FFI::MemoryPointer.from_string(str)
  self[:name] = @name
end
update_thread_context() click to toggle source
# File lib/ffi/libav.rb, line 1902
def update_thread_context
  @update_thread_context
end
update_thread_context=(cb) click to toggle source
# File lib/ffi/libav.rb, line 1898
def update_thread_context=(cb)
  @update_thread_context = cb
  self[:update_thread_context] = @update_thread_context
end