aboutsummaryrefslogtreecommitdiff
path: root/source/rotate.cc
diff options
context:
space:
mode:
authorSadaf Ebrahimi <sadafebrahimi@google.com>2023-09-07 18:14:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-09-07 18:14:22 +0000
commitf0da29480964d8f73d12d9c018e0cd42d73829d6 (patch)
tree71d20d87f6b82890c1503ea80ea32a8d1b54bb20 /source/rotate.cc
parent08f747f785e3032936ed9357560bc0ad39658287 (diff)
parent1b580f29c8442ceac459aa77bd1e5154f62d636b (diff)
downloadlibyuv-f0da29480964d8f73d12d9c018e0cd42d73829d6.tar.gz
Merge changes from topic "upgrade-libyuv" into main
* changes: Upgrade libyuv to f0921806a293e3e008e6325a51d4ea760c39d2c1 Initial repository for libyuv
Diffstat (limited to 'source/rotate.cc')
-rw-r--r--source/rotate.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/source/rotate.cc b/source/rotate.cc
index 8d3978c7..3678b80a 100644
--- a/source/rotate.cc
+++ b/source/rotate.cc
@@ -489,13 +489,12 @@ int RotatePlane(const uint8_t* src,
return -1;
}
-LIBYUV_API
-void TransposePlane_16(const uint16_t* src,
- int src_stride,
- uint16_t* dst,
- int dst_stride,
- int width,
- int height) {
+static void TransposePlane_16(const uint16_t* src,
+ int src_stride,
+ uint16_t* dst,
+ int dst_stride,
+ int width,
+ int height) {
int i = height;
// Work across the source in 8x8 tiles
while (i >= 8) {