
Speculatively fixes Chromium test for cut: crbug.com/877968 Reverts CLs: https://webrtc-review.googlesource.com/c/src/+/94772 https://webrtc-review.googlesource.com/c/src/+/95648 https://webrtc-review.googlesource.com/c/src/+/94773 https://webrtc-review.googlesource.com/c/src/+/96000 https://webrtc-review.googlesource.com/c/src/+/95949 Revert "Add Y4mFileReader" This reverts commit 404be7f302358e6be16aadeba8bc8f8aba348c0f. Revert "Remove SequencedTaskChecker from Y4mFileReader" This reverts commit 1b5e5db842971340eb9128985ddbaf0225a9d0b1. Revert "Add tool for aliging video files" This reverts commit b2c0e8f60fad10e2786e5e131136a0da1299d883. Revert "Reland "Update video_quality_analysis to align videos instead of using barcodes"" This reverts commit 9bb55fc09b6bfa00cba7779c37ad6c39b4206f7a. Revert "Fix a bug in barcode_decoder.py" This reverts commit 5c2de6b3ce079cff52c411a2c02ce6553a38dc79. TBR=magjed@webrtc.org, phoglund@webrtc.org, phensman@webrtc.org Bug: chromium:877968, webrtc:9642 Change-Id: I784d0598fd0370eec38d758b9fa0b38e4b3423be Reviewed-on: https://webrtc-review.googlesource.com/96320 Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Commit-Queue: Sami Kalliomäki <sakal@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24458}
This file explains how to get the dependencies needed for the barcode tools. barcode_encoder.py ================== This script depends on: * Zxing (Java version) * Ant (must be installed manually) * Java To automatically download Zxing for the encoder script, checkout this directory as a separate gclient solution, like this: gclient config http://webrtc.googlecode.com/svn/trunk/webrtc/rtc_tools/barcode_tools gclient sync Then the Zxing Java source code will be put in third_party/zxing. In order to run barcode_encoder.py you then need to build: * zxing/core/core.jar * zxing/javase/javase.jar These are compiled using Ant by running build_zxing.py: python build_zxing.py For more info about Zxing, see https://code.google.com/p/zxing/ barcode_decoder.py ================== This script depends on: * Zxing (C++ version). You need to checkout from Subversion and build the libs and zxing SCons targets. SVN URL: http://zxing.googlecode.com/svn/trunk/cpp * FFMPEG fmpeg 0.11.1 These dependencies must be precompiled separately before running the script. Make sure to add FFMPEG to the PATH environment variable and provide the path to the zxing executable using the mandatory command line flag to the script.