File size: 229 Bytes
64772a4
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cimport libav as lib


cdef class Codec:

    cdef const lib.AVCodec *ptr
    cdef const lib.AVCodecDescriptor *desc
    cdef readonly bint is_encoder

    cdef _init(self, name=?)


cdef Codec wrap_codec(const lib.AVCodec *ptr)