aboutsummaryrefslogtreecommitdiff
path: root/source/rotate_common.cc
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2018-01-22 18:35:52 -0800
committerFrank Barchard <fbarchard@chromium.org>2018-01-23 19:16:05 +0000
commit7e389884a14285de2085052c819abee4e53139af (patch)
treea13ddf691bc79b5b96c6e7e8912925ecba6a9a20 /source/rotate_common.cc
parent13771ffaadb810c706bd421be4bdf48a928032e6 (diff)
downloadlibyuv-7e389884a14285de2085052c819abee4e53139af.tar.gz
Switch to C99 types
Append _t to all sized types. uint64 becomes uint64_t etc Bug: libyuv:774 Test: try bots build on all platforms Change-Id: Ide273d7f8012313d6610415d514a956d6f3a8cac Reviewed-on: https://chromium-review.googlesource.com/879922 Reviewed-by: Miguel Casas <mcasas@chromium.org>
Diffstat (limited to 'source/rotate_common.cc')
-rw-r--r--source/rotate_common.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/rotate_common.cc b/source/rotate_common.cc
index 89357e73..ff212ade 100644
--- a/source/rotate_common.cc
+++ b/source/rotate_common.cc
@@ -16,9 +16,9 @@ namespace libyuv {
extern "C" {
#endif
-void TransposeWx8_C(const uint8* src,
+void TransposeWx8_C(const uint8_t* src,
int src_stride,
- uint8* dst,
+ uint8_t* dst,
int dst_stride,
int width) {
int i;
@@ -36,11 +36,11 @@ void TransposeWx8_C(const uint8* src,
}
}
-void TransposeUVWx8_C(const uint8* src,
+void TransposeUVWx8_C(const uint8_t* src,
int src_stride,
- uint8* dst_a,
+ uint8_t* dst_a,
int dst_stride_a,
- uint8* dst_b,
+ uint8_t* dst_b,
int dst_stride_b,
int width) {
int i;
@@ -67,9 +67,9 @@ void TransposeUVWx8_C(const uint8* src,
}
}
-void TransposeWxH_C(const uint8* src,
+void TransposeWxH_C(const uint8_t* src,
int src_stride,
- uint8* dst,
+ uint8_t* dst,
int dst_stride,
int width,
int height) {
@@ -82,11 +82,11 @@ void TransposeWxH_C(const uint8* src,
}
}
-void TransposeUVWxH_C(const uint8* src,
+void TransposeUVWxH_C(const uint8_t* src,
int src_stride,
- uint8* dst_a,
+ uint8_t* dst_a,
int dst_stride_a,
- uint8* dst_b,
+ uint8_t* dst_b,
int dst_stride_b,
int width,
int height) {