Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1686)

Side by Side Diff: webrtc/common_video/libyuv/libyuv_unittest.cc

Issue 2394483005: iOS: Optimize video scaling and cropping (Closed)
Patch Set: Add comment about the different resolution variables. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <math.h> 11 #include <math.h>
12 #include <string.h> 12 #include <string.h>
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" 16 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
17 #include "webrtc/test/frame_utils.h" 17 #include "webrtc/test/frame_utils.h"
18 #include "webrtc/test/gmock.h"
18 #include "webrtc/test/gtest.h" 19 #include "webrtc/test/gtest.h"
19 #include "webrtc/test/testsupport/fileutils.h" 20 #include "webrtc/test/testsupport/fileutils.h"
20 #include "webrtc/video_frame.h" 21 #include "webrtc/video_frame.h"
21 22
22 namespace webrtc { 23 namespace webrtc {
23 24
24 namespace { 25 namespace {
25 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) { 26 void Calc16ByteAlignedStride(int width, int* stride_y, int* stride_uv) {
26 *stride_y = 16 * ((width + 15) / 16); 27 *stride_y = 16 * ((width + 15) / 16);
27 *stride_uv = 16 * ((width + 31) / 32); 28 *stride_uv = 16 * ((width + 31) / 32);
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_, 247 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_,
247 0, kVideoRotation_270, 248 0, kVideoRotation_270,
248 rotated_res_i420_buffer.get())); 249 rotated_res_i420_buffer.get()));
249 rotated_res_i420_buffer = I420Buffer::Create( 250 rotated_res_i420_buffer = I420Buffer::Create(
250 width_, height_, width_, (width_ + 1) / 2, (width_ + 1) / 2); 251 width_, height_, width_, (width_ + 1) / 2, (width_ + 1) / 2);
251 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_, 252 EXPECT_EQ(0, ConvertToI420(kI420, orig_buffer, 0, 0, width_, height_,
252 0, kVideoRotation_180, 253 0, kVideoRotation_180,
253 rotated_res_i420_buffer.get())); 254 rotated_res_i420_buffer.get()));
254 } 255 }
255 256
257 static uint8_t Average(int a, int b, int c, int d) {
258 return (a + b + c + d + 2) / 4;
259 }
260
261 TEST_F(TestLibYuv, NV12Scale2x2to2x2) {
262 const std::vector<uint8_t> src_y = {0, 1,
263 2, 3};
264 const std::vector<uint8_t> src_uv = {0, 1};
265 std::vector<uint8_t> dst_y(4);
266 std::vector<uint8_t> dst_uv(2);
267
268 std::vector<uint8_t> tmp_buffer;
269 NV12Scale(&tmp_buffer,
270 src_y.data(), 2,
271 src_uv.data(), 2,
272 2, 2,
273 dst_y.data(), 2,
274 dst_uv.data(), 2,
275 2, 2);
276
277 EXPECT_THAT(dst_y, ::testing::ContainerEq(src_y));
278 EXPECT_THAT(dst_uv, ::testing::ContainerEq(src_uv));
279 }
280
281 TEST_F(TestLibYuv, NV12Scale4x4to2x2) {
282 const uint8_t src_y[] = { 0, 1, 2, 3,
283 4, 5, 6, 7,
284 8, 9, 10, 11,
285 12, 13, 14, 15};
286 const uint8_t src_uv[] = {0, 1, 2, 3,
287 4, 5, 6, 7};
288 std::vector<uint8_t> dst_y(4);
289 std::vector<uint8_t> dst_uv(2);
290
291 std::vector<uint8_t> tmp_buffer;
292 NV12Scale(&tmp_buffer,
293 src_y, 4,
294 src_uv, 4,
295 4, 4,
296 dst_y.data(), 2,
297 dst_uv.data(), 2,
298 2, 2);
299
300 EXPECT_THAT(dst_y, ::testing::ElementsAre(
301 Average(0, 1, 4, 5), Average(2, 3, 6, 7),
302 Average(8, 9, 12, 13), Average(10, 11, 14, 15)));
303 EXPECT_THAT(dst_uv,
304 ::testing::ElementsAre(Average(0, 2, 4, 6), Average(1, 3, 5, 7)));
305 }
306
256 } // namespace webrtc 307 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_video/libyuv/include/webrtc_libyuv.h ('k') | webrtc/common_video/libyuv/webrtc_libyuv.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698