hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 The WebM project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include <cstdio> |
| 12 | #include <cstdlib> |
| 13 | #include <string> |
| 14 | #include "third_party/googletest/src/include/gtest/gtest.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 15 | #include "./aom_config.h" |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 16 | #include "test/acm_random.h" |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 17 | #include "test/codec_factory.h" |
| 18 | #include "test/decode_test_driver.h" |
| 19 | #include "test/ivf_video_source.h" |
| 20 | #include "test/md5_helper.h" |
| 21 | #include "test/util.h" |
| 22 | #if CONFIG_WEBM_IO |
| 23 | #include "test/webm_video_source.h" |
| 24 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 25 | #include "aom_mem/aom_mem.h" |
| 26 | #include "aom/aom.h" |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 27 | |
| 28 | namespace { |
| 29 | |
| 30 | using std::string; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 31 | using libaom_test::ACMRandom; |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 32 | |
| 33 | #if CONFIG_WEBM_IO |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 34 | |
| 35 | void CheckUserPrivateData(void *user_priv, int *target) { |
| 36 | // actual pointer value should be the same as expected. |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 37 | EXPECT_EQ(reinterpret_cast<void *>(target), user_priv) |
| 38 | << "user_priv pointer value does not match."; |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 39 | } |
| 40 | |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 41 | // Decodes |filename|. Passes in user_priv data when calling DecodeFrame and |
| 42 | // compares the user_priv from return img with the original user_priv to see if |
| 43 | // they match. Both the pointer values and the values inside the addresses |
| 44 | // should match. |
| 45 | string DecodeFile(const string &filename) { |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 46 | ACMRandom rnd(ACMRandom::DeterministicSeed()); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 47 | libaom_test::WebMVideoSource video(filename); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 48 | video.Init(); |
| 49 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 50 | aom_codec_dec_cfg_t cfg = aom_codec_dec_cfg_t(); |
| 51 | libaom_test::AV1Decoder decoder(cfg, 0); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 52 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 53 | libaom_test::MD5 md5; |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 54 | int frame_num = 0; |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 55 | for (video.Begin(); !::testing::Test::HasFailure() && video.cxdata(); |
| 56 | video.Next()) { |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 57 | void *user_priv = reinterpret_cast<void *>(&frame_num); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 58 | const aom_codec_err_t res = |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 59 | decoder.DecodeFrame(video.cxdata(), video.frame_size(), |
| 60 | (frame_num == 0) ? NULL : user_priv); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 61 | if (res != AOM_CODEC_OK) { |
| 62 | EXPECT_EQ(AOM_CODEC_OK, res) << decoder.DecodeError(); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 63 | break; |
| 64 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 65 | libaom_test::DxDataIterator dec_iter = decoder.GetDxData(); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 66 | const aom_image_t *img = NULL; |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 67 | |
| 68 | // Get decompressed data. |
| 69 | while ((img = dec_iter.Next())) { |
| 70 | if (frame_num == 0) { |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 71 | CheckUserPrivateData(img->user_priv, NULL); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 72 | } else { |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 73 | CheckUserPrivateData(img->user_priv, &frame_num); |
| 74 | |
| 75 | // Also test ctrl_get_reference api. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 76 | struct av1_ref_frame ref; |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 77 | // Randomly fetch a reference frame. |
| 78 | ref.idx = rnd.Rand8() % 3; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 79 | decoder.Control(AV1_GET_REFERENCE, &ref); |
hkuang | b336356 | 2014-06-24 14:22:09 -0700 | [diff] [blame] | 80 | |
James Zern | 749e0c7 | 2014-06-27 17:31:01 -0700 | [diff] [blame] | 81 | CheckUserPrivateData(ref.img.user_priv, NULL); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 82 | } |
| 83 | md5.Add(img); |
| 84 | } |
| 85 | |
| 86 | frame_num++; |
| 87 | } |
| 88 | return string(md5.Get()); |
| 89 | } |
| 90 | |
| 91 | TEST(UserPrivTest, VideoDecode) { |
| 92 | // no tiles or frame parallel; this exercises the decoding to test the |
| 93 | // user_priv. |
| 94 | EXPECT_STREQ("b35a1b707b28e82be025d960aba039bc", |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 95 | DecodeFile("av10-2-03-size-226x226.webm").c_str()); |
hkuang | 5e7242d | 2014-06-23 14:59:20 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | #endif // CONFIG_WEBM_IO |
| 99 | |
| 100 | } // namespace |