Replay/framereader: fix c3 qcamera padding problem (#22572)

old-commit-hash: ae5eedb0b1ab295881750f005230a195aa2f8d26
This commit is contained in:
Dean Lee
2021-10-17 03:24:34 +08:00
committed by GitHub
parent 09a378d1eb
commit 37212cdd24
3 changed files with 5 additions and 16 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ if arch in ['x86_64', 'Darwin'] and os.path.exists(Dir("#tools/").get_abspath())
replay_lib_src = ["replay/replay.cc", "replay/camera.cc", "replay/logreader.cc", "replay/framereader.cc", "replay/route.cc", "replay/util.cc"]
replay_lib = qt_env.Library("qt_replay", replay_lib_src, LIBS=base_libs)
replay_libs = [replay_lib, 'avutil', 'avcodec', 'avformat', 'swscale', 'bz2', 'curl'] + qt_libs
replay_libs = [replay_lib, 'avutil', 'avcodec', 'avformat', 'swscale', 'bz2', 'curl', 'yuv'] + qt_libs
qt_env.Program("replay/replay", ["replay/main.cc"], LIBS=replay_libs)
qt_env.Program("watch3", ["watch3.cc"], LIBS=qt_libs)