12 lines
236 B
Cython
12 lines
236 B
Cython
|
|
cimport libav as lib
|
||
|
|
|
||
|
|
|
||
|
|
cdef class OpaqueContainer:
|
||
|
|
cdef dict _objects
|
||
|
|
cdef lib.AVBufferRef *add(self, object v)
|
||
|
|
cdef object get(self, char *name)
|
||
|
|
cdef object pop(self, char *name)
|
||
|
|
|
||
|
|
|
||
|
|
cdef OpaqueContainer opaque_container
|