aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2022-03-18 18:25:49 -0700
committerlibyuv LUCI CQ <libyuv-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-03-19 01:44:06 +0000
commit124bf08feeaacfa132e52a48d9ce36237c92b713 (patch)
treeffc69db2d291c63ed836aeb241521edddbb6e910 /Android.bp
parent95b14b24462d67aede96e30243694732f9471e63 (diff)
downloadlibyuv-124bf08feeaacfa132e52a48d9ce36237c92b713.tar.gz
RGBScale function using 3 steps: RGB24ToARGB, ARGBScale, ARGBToRGB24
1920x1080 to/from 1280x720 to ARGB on Intel Skylake Xeon RGBScaleTo1920x1080_Bilinear (2625 ms) RGBScaleFrom1920x1080_Bilinear (2115 ms) ARGBScaleTo1920x1080_Bilinear (1668 ms) ARGBScaleFrom1920x1080_Bilinear (1164 ms) Bug: b/224814071 Change-Id: Ifc7611b597409771728b13c9c39e5a7e06131021 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3537341 Reviewed-by: Wan-Teh Chang <wtc@google.com> Commit-Queue: Frank Barchard <fbarchard@chromium.org>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index a91101a4..f510daa1 100644
--- a/Android.bp
+++ b/Android.bp
@@ -71,6 +71,7 @@ cc_library {
"source/scale_msa.cc",
"source/scale_neon.cc",
"source/scale_neon64.cc",
+ "source/scale_rgb.cc",
"source/scale_uv.cc",
"source/video_common.cc",
],
@@ -130,6 +131,7 @@ cc_test {
"unit_test/rotate_argb_test.cc",
"unit_test/rotate_test.cc",
"unit_test/scale_argb_test.cc",
+ "unit_test/scale_rgb_test.cc",
"unit_test/scale_test.cc",
"unit_test/scale_uv_test.cc",
"unit_test/unit_test.cc",