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

12 lines
334 B
Cython
Raw Normal View History

2026-02-06 22:23:20 +01:00
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