merge in tools

This commit is contained in:
George Hotz
2020-01-17 10:07:22 -08:00
parent 80d6953862
commit 29ac3da7b8
79 changed files with 7577 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'])