Beta/venv/lib/python3.12/site-packages/av/video/frame.pxd

29 lines
869 B
Cython
Raw Normal View History

2026-02-06 22:23:20 +01:00
cimport libav as lib
from libc.stdint cimport uint8_t
from av.frame cimport Frame
from av.video.format cimport VideoFormat
from av.video.reformatter cimport VideoReformatter
2026-06-16 17:09:34 +00:00
cdef class CudaContext:
cdef readonly int device_id
cdef readonly bint primary_ctx
cdef lib.AVBufferRef* _device_ref
cdef dict _frames_cache
cdef lib.AVBufferRef* _get_device_ref(self)
cdef public lib.AVBufferRef* get_frames_ctx(
self, lib.AVPixelFormat sw_fmt, int width, int height
)
2026-02-06 22:23:20 +01:00
2026-06-16 17:09:34 +00:00
cdef class VideoFrame(Frame):
cdef CudaContext _cuda_ctx
2026-02-06 22:23:20 +01:00
cdef VideoReformatter reformatter
cdef readonly VideoFormat format
2026-06-16 17:09:34 +00:00
cdef readonly int _device_id
2026-02-06 22:23:20 +01:00
cdef _init(self, lib.AVPixelFormat format, unsigned int width, unsigned int height)
cdef _init_user_attributes(self)
cpdef save(self, object filepath)
cdef VideoFrame alloc_video_frame()