17 lines
266 B
Cython
17 lines
266 B
Cython
cimport libav as lib
|
|
|
|
from av.frame cimport Frame
|
|
from av.sidedata.sidedata cimport SideData
|
|
|
|
|
|
cdef class _MotionVectors(SideData):
|
|
|
|
cdef dict _vectors
|
|
cdef int _len
|
|
|
|
|
|
cdef class MotionVector:
|
|
|
|
cdef _MotionVectors parent
|
|
cdef lib.AVMotionVector *ptr
|