12 lines
174 B
Cython
12 lines
174 B
Cython
cimport libav as lib
|
|
|
|
|
|
cdef class _Dictionary:
|
|
|
|
cdef lib.AVDictionary *ptr
|
|
|
|
cpdef _Dictionary copy(self)
|
|
|
|
|
|
cdef _Dictionary wrap_dictionary(lib.AVDictionary *input_)
|