aboutsummaryrefslogtreecommitdiff
path: root/third_party/libyuv/source/scale_uv.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libyuv/source/scale_uv.cc')
-rw-r--r--third_party/libyuv/source/scale_uv.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/third_party/libyuv/source/scale_uv.cc b/third_party/libyuv/source/scale_uv.cc
index 7b977912f9..d9a314453e 100644
--- a/third_party/libyuv/source/scale_uv.cc
+++ b/third_party/libyuv/source/scale_uv.cc
@@ -746,7 +746,8 @@ void ScaleUVBilinearUp2(int src_width,
for (x = 0; x < src_height - 1; ++x) {
Scale2RowUp(src_ptr, src_stride, dst_ptr, dst_stride, dst_width);
src_ptr += src_stride;
- // TODO: Test performance of writing one row of destination at a time.
+ // TODO(fbarchard): Test performance of writing one row of destination at a
+ // time.
dst_ptr += 2 * dst_stride;
}
if (!(dst_height & 1)) {
@@ -851,7 +852,8 @@ void ScaleUVBilinearUp2_16(int src_width,
for (x = 0; x < src_height - 1; ++x) {
Scale2RowUp(src_ptr, src_stride, dst_ptr, dst_stride, dst_width);
src_ptr += src_stride;
- // TODO: Test performance of writing one row of destination at a time.
+ // TODO(fbarchard): Test performance of writing one row of destination at a
+ // time.
dst_ptr += 2 * dst_stride;
}
if (!(dst_height & 1)) {