Beta/venv/lib/python3.12/site-packages/av/codec/codec.pxd

16 lines
263 B
Cython
Raw Normal View History

2026-02-06 22:23:20 +01:00
cimport libav as lib
cdef class Codec:
cdef const lib.AVCodec *ptr
cdef const lib.AVCodecDescriptor *desc
cdef readonly bint is_encoder
cdef tuple _hardware_configs
cdef _init(self, name=?)
cdef Codec wrap_codec(const lib.AVCodec *ptr)