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
|