Beta/venv/lib/python3.12/site-packages/av/sidedata/motionvectors.pxd

15 lines
269 B
Cython
Raw Normal View History

2026-02-06 22:23:20 +01:00
cimport libav as lib
from av.frame cimport Frame
from av.sidedata.sidedata cimport SideData
2026-06-16 17:09:34 +00:00
cdef class MotionVectors(SideData):
2026-02-06 22:23:20 +01:00
cdef dict _vectors
2026-06-16 17:09:34 +00:00
cdef Py_ssize_t _len
2026-02-06 22:23:20 +01:00
cdef class MotionVector:
2026-06-16 17:09:34 +00:00
cdef MotionVectors parent
2026-02-06 22:23:20 +01:00
cdef lib.AVMotionVector *ptr