av
codec
context.pyx +56 -0
sidedata
__init__.py +0 -0
motionvectors.pxd +16 -0
motionvectors.pyx +106 -0
sidedata.pxd +23 -0
sidedata.pyx +99 -0
video
codeccontext.pyx +1 -0
frame.pxd +1 -1
frame.pxd +3 -1
frame.pyx +8 -0
include
libavcodec
avcodec.pxd +65 -2
libavutil
frame.pxd +1 -0
motion_vector.pxd +22 -0
libav.pxd +1 -0
scratchpad
sidedata.py +23 -0
tests
test_decode.py +29 -0
test_enums.py +8 -0
Makefile +1 -1
+ 56
- 0
@@ -59,6 +59,43 @@ SkipType = define_enum('SkipType', (
@@ -87,6 +124,24 @@ cdef class CodecContext(object):
@@ -110,6 +165,7 @@ cdef class CodecContext(object):
av/sidedata/__init__.py
0 → 100644
+ 0
- 0
av/sidedata/motionvectors.pxd
0 → 100644
+ 16
- 0
av/sidedata/motionvectors.pyx
0 → 100644
+ 106
- 0
av/sidedata/sidedata.pxd
0 → 100644
+ 23
- 0