8 lines
168 B
Cython
8 lines
168 B
Cython
cimport libav as lib
|
|
|
|
|
|
cdef class Dictionary:
|
|
cdef lib.AVDictionary *ptr
|
|
cpdef Dictionary copy(self)
|
|
|
|
cdef Dictionary wrap_dictionary(lib.AVDictionary *input_)
|