File: bitstream.pyi

package info (click to toggle)
python-av 16.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,684 kB
  • sloc: python: 7,607; sh: 182; ansic: 174; makefile: 135
file content (14 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .packet import Packet
from .stream import Stream

class BitStreamFilterContext:
    def __init__(
        self,
        filter_description: str | bytes,
        in_stream: Stream | None = None,
        out_stream: Stream | None = None,
    ): ...
    def filter(self, packet: Packet | None) -> list[Packet]: ...
    def flush(self) -> None: ...

bitstream_filters_available: set[str]