Files
voice_bridge/venv/lib/python3.12/site-packages/av/buffer.pyi
2026-01-09 10:28:44 +11:00

10 lines
316 B
Python

# When Python 3.12 becomes our lowest supported version, we could make this
# class inherit `collections.abc.Buffer`.
class Buffer:
buffer_size: int
buffer_ptr: int
def update(self, input: bytes) -> None: ...
def __buffer__(self, flags: int) -> memoryview: ...
def __bytes__(self) -> bytes: ...