File size: 234 Bytes
ea35292 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | cimport libav as lib
cdef class ContainerFormat:
cdef readonly str name
cdef lib.AVInputFormat *iptr
cdef lib.AVOutputFormat *optr
cdef ContainerFormat build_container_format(lib.AVInputFormat*, lib.AVOutputFormat*)
|