10 lines
163 B
Cython
10 lines
163 B
Cython
cimport libav as lib
|
|
|
|
from av.container.core cimport Container
|
|
from av.stream cimport Stream
|
|
|
|
|
|
cdef class InputContainer(Container):
|
|
|
|
cdef flush_buffers(self)
|