aboutsummaryrefslogtreecommitdiff
path: root/unit_test/unit_test.cc
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2021-03-04 12:33:02 -0800
committerFrank Barchard <fbarchard@chromium.org>2021-03-05 01:09:37 +0000
commitba033a11e3948e4b361e0414caa57f793584b46e (patch)
tree1037b49cad50b9564db77c505aec9740f2bc88f6 /unit_test/unit_test.cc
parent95ff456c3335c2c541e2bc5038a2b01eea08cd33 (diff)
downloadlibyuv-ba033a11e3948e4b361e0414caa57f793584b46e.tar.gz
Add 12 bit YUV to 10 bit RGB
Bug: libyuv:843 Change-Id: I0104c8fcaeed09e83d2fd654c6a5e7d41bcb74cf Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/2727775 Reviewed-by: Frank Barchard <fbarchard@chromium.org> Reviewed-by: Wan-Teh Chang <wtc@google.com>
Diffstat (limited to 'unit_test/unit_test.cc')
-rw-r--r--unit_test/unit_test.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/unit_test/unit_test.cc b/unit_test/unit_test.cc
index 85e3b717..e6dbc3ee 100644
--- a/unit_test/unit_test.cc
+++ b/unit_test/unit_test.cc
@@ -26,9 +26,13 @@ unsigned int fastrand_seed = 0xfb;
ABSL_FLAG(int32_t, libyuv_width, 0, "width of test image.");
ABSL_FLAG(int32_t, libyuv_height, 0, "height of test image.");
ABSL_FLAG(int32_t, libyuv_repeat, 0, "number of times to repeat test.");
-ABSL_FLAG(int32_t, libyuv_flags, 0,
+ABSL_FLAG(int32_t,
+ libyuv_flags,
+ 0,
"cpu flags for reference code. 1 = C, -1 = SIMD");
-ABSL_FLAG(int32_t, libyuv_cpu_info, 0,
+ABSL_FLAG(int32_t,
+ libyuv_cpu_info,
+ 0,
"cpu flags for benchmark code. 1 = C, -1 = SIMD");
#else
// Disable command line parameters if absl/flags disabled.