merge in tools

old-commit-hash: 29ac3da7b8
This commit is contained in:
George Hotz
2020-01-17 10:07:22 -08:00
parent 9ea7901c46
commit 99c5800ea5
79 changed files with 7536 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
Import('env')
from sysconfig import get_paths
env['CPPPATH'] += [get_paths()['include']]
from Cython.Build import cythonize
cythonize("cframereader.pyx")
env.SharedLibrary(File('cframereader.so'), ['cframereader.cpp', 'FrameReader.cpp'], LIBS=['avformat', 'avcodec', 'avutil', 'swscale'])