Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
50
venv/lib/python3.12/site-packages/av/codec/hwaccel.pyi
Normal file
50
venv/lib/python3.12/site-packages/av/codec/hwaccel.pyi
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
from enum import IntEnum
|
||||
from typing import cast
|
||||
|
||||
from av.codec.codec import Codec
|
||||
from av.video.format import VideoFormat
|
||||
|
||||
class HWDeviceType(IntEnum):
|
||||
none = cast(int, ...)
|
||||
vdpau = cast(int, ...)
|
||||
cuda = cast(int, ...)
|
||||
vaapi = cast(int, ...)
|
||||
dxva2 = cast(int, ...)
|
||||
qsv = cast(int, ...)
|
||||
videotoolbox = cast(int, ...)
|
||||
d3d11va = cast(int, ...)
|
||||
drm = cast(int, ...)
|
||||
opencl = cast(int, ...)
|
||||
mediacodec = cast(int, ...)
|
||||
vulkan = cast(int, ...)
|
||||
d3d12va = cast(int, ...)
|
||||
|
||||
class HWConfigMethod(IntEnum):
|
||||
none = cast(int, ...)
|
||||
hw_device_ctx = cast(int, ...)
|
||||
hw_frame_ctx = cast(int, ...)
|
||||
internal = cast(int, ...)
|
||||
ad_hoc = cast(int, ...)
|
||||
|
||||
class HWConfig:
|
||||
@property
|
||||
def device_type(self) -> HWDeviceType: ...
|
||||
@property
|
||||
def format(self) -> VideoFormat: ...
|
||||
@property
|
||||
def methods(self) -> HWConfigMethod: ...
|
||||
@property
|
||||
def is_supported(self) -> bool: ...
|
||||
|
||||
class HWAccel:
|
||||
def __init__(
|
||||
self,
|
||||
device_type: str | HWDeviceType,
|
||||
device: str | None = None,
|
||||
allow_software_fallback: bool = False,
|
||||
options: dict[str, object] | None = None,
|
||||
flags: int | None = None,
|
||||
) -> None: ...
|
||||
def create(self, codec: Codec) -> HWAccel: ...
|
||||
|
||||
def hwdevices_available() -> list[str]: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue