File: plane.pyi

package info (click to toggle)
python-av 16.1.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,728 kB
  • sloc: python: 8,059; sh: 181; ansic: 174; makefile: 140
file content (8 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
from .buffer import Buffer
from .frame import Frame

class Plane(Buffer):
    frame: Frame
    index: int

    def __init__(self, frame: Frame, index: int) -> None: ...