Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
27
venv/lib/python3.12/site-packages/av/video/format.pxd
Normal file
27
venv/lib/python3.12/site-packages/av/video/format.pxd
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
cimport libav as lib
|
||||
|
||||
|
||||
cdef class VideoFormat:
|
||||
|
||||
cdef lib.AVPixelFormat pix_fmt
|
||||
cdef const lib.AVPixFmtDescriptor *ptr
|
||||
cdef readonly unsigned int width, height
|
||||
|
||||
cdef readonly tuple components
|
||||
|
||||
cdef _init(self, lib.AVPixelFormat pix_fmt, unsigned int width, unsigned int height)
|
||||
|
||||
cpdef chroma_width(self, int luma_width=?)
|
||||
cpdef chroma_height(self, int luma_height=?)
|
||||
|
||||
|
||||
cdef class VideoFormatComponent:
|
||||
|
||||
cdef VideoFormat format
|
||||
cdef readonly unsigned int index
|
||||
cdef const lib.AVComponentDescriptor *ptr
|
||||
|
||||
|
||||
cdef VideoFormat get_video_format(lib.AVPixelFormat c_format, unsigned int width, unsigned int height)
|
||||
|
||||
cdef lib.AVPixelFormat get_pix_fmt(const char *name) except lib.AV_PIX_FMT_NONE
|
||||
Loading…
Add table
Add a link
Reference in a new issue