File size: 345 Bytes
06555b5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from av.audio.frame cimport AudioFrame
from av.audio.resampler cimport AudioResampler
from av.codec.context cimport CodecContext
cdef class AudioCodecContext(CodecContext):
# Hold onto the frames that we will decode until we have a full one.
cdef AudioFrame next_frame
# For encoding.
cdef AudioResampler resampler
|