Voice et bot modif
This commit is contained in:
parent
189d56026b
commit
7333a22bcd
10774 changed files with 634644 additions and 933308 deletions
|
|
@ -2,8 +2,10 @@ import sys
|
|||
|
||||
import cython
|
||||
|
||||
container_format_postfix: str = "le" if sys.byteorder == "little" else "be"
|
||||
_cinit_bypass_sentinel = object()
|
||||
container_format_postfix = cython.declare(
|
||||
str, "le" if sys.byteorder == "little" else "be"
|
||||
)
|
||||
_cinit_bypass_sentinel = cython.declare(object, object())
|
||||
|
||||
|
||||
@cython.cfunc
|
||||
|
|
@ -18,6 +20,7 @@ def get_audio_format(c_format: lib.AVSampleFormat) -> AudioFormat:
|
|||
return format
|
||||
|
||||
|
||||
@cython.final
|
||||
@cython.cclass
|
||||
class AudioFormat:
|
||||
"""Descriptor of audio formats."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue