remove raw logger (#2719)

* remove raw logger

* no raw_clips

* only remove raw clips

* cleanup
old-commit-hash: 56146d84ce43deb1afbe4b0b77438d1e9f8a4965
This commit is contained in:
Adeeb Shihadeh
2020-12-08 15:23:06 -08:00
committed by GitHub
parent df6abf988e
commit 9044cba60a
2 changed files with 11 additions and 68 deletions
+7 -6
View File
@@ -5,12 +5,13 @@ libs = ['zmq', 'capnp', 'kj', 'z',
'avformat', 'avcodec', 'swscale', 'avutil',
'yuv', 'bz2', common, cereal, messaging, visionipc]
if arch == "aarch64":
src += ['encoder.c', 'raw_logger.cc']
libs += ['OmxVenc', 'OmxCore', 'cutils']
elif arch == "larch64":
src += ['encoder.c', 'raw_logger.cc']
libs += ['OmxVenc', 'OmxCore', 'pthread']
if arch in ["aarch64", "larch64"]:
src += ['encoder.c']
libs += ['OmxVenc', 'OmxCore']
if arch == "aarch64":
libs += ['cutils']
else:
libs += ['pthread']
else:
libs += ['pthread']