File size: 423 Bytes
06555b5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
cdef extern from "libavutil/channel_layout.h" nogil:
# This is not a comprehensive list.
cdef uint64_t AV_CH_LAYOUT_MONO
cdef uint64_t AV_CH_LAYOUT_STEREO
cdef uint64_t AV_CH_LAYOUT_2POINT1
cdef uint64_t AV_CH_LAYOUT_4POINT0
cdef uint64_t AV_CH_LAYOUT_5POINT0_BACK
cdef uint64_t AV_CH_LAYOUT_5POINT1_BACK
cdef uint64_t AV_CH_LAYOUT_6POINT1
cdef uint64_t AV_CH_LAYOUT_7POINT1
|