2026-02-06 22:23:20 +01:00
|
|
|
cimport libav as lib
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cdef class ContainerFormat:
|
|
|
|
|
|
|
|
|
|
cdef readonly str name
|
|
|
|
|
|
2026-06-16 17:09:34 +00:00
|
|
|
cdef const lib.AVInputFormat *iptr
|
|
|
|
|
cdef const lib.AVOutputFormat *optr
|
2026-02-06 22:23:20 +01:00
|
|
|
|
|
|
|
|
|
2026-06-16 17:09:34 +00:00
|
|
|
cdef ContainerFormat build_container_format(const lib.AVInputFormat*, const lib.AVOutputFormat*)
|