John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Johann | 123e8a6 | 2017-12-28 14:40:49 -0800 | [diff] [blame] | 10 | */ |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 11 | |
Frank Galligan | 89df6d1 | 2015-03-09 15:52:29 -0700 | [diff] [blame] | 12 | #include <string> |
| 13 | |
Tom Finegan | 7a07ece | 2017-02-07 17:14:05 -0800 | [diff] [blame] | 14 | #include "third_party/googletest/src/googletest/include/gtest/gtest.h" |
Jingning Han | 097d59c | 2015-07-29 14:51:36 -0700 | [diff] [blame] | 15 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 16 | #include "./aom_config.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 17 | #include "aom_ports/mem.h" |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 18 | #include "test/codec_factory.h" |
Yaowu Xu | c953aea | 2012-08-30 13:43:15 -0700 | [diff] [blame] | 19 | #include "test/decode_test_driver.h" |
Jingning Han | 097d59c | 2015-07-29 14:51:36 -0700 | [diff] [blame] | 20 | #include "test/encode_test_driver.h" |
James Zern | eebb648 | 2012-11-27 13:08:05 -0800 | [diff] [blame] | 21 | #include "test/register_state_check.h" |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 22 | #include "test/video_source.h" |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 23 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 24 | namespace libaom_test { |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 25 | void Encoder::InitEncoder(VideoSource *video) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 26 | aom_codec_err_t res; |
| 27 | const aom_image_t *img = video->img(); |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 28 | |
| 29 | if (video->img() && !encoder_.priv) { |
| 30 | cfg_.g_w = img->d_w; |
| 31 | cfg_.g_h = img->d_h; |
| 32 | cfg_.g_timebase = video->timebase(); |
| 33 | cfg_.rc_twopass_stats_in = stats_->buf(); |
Frank Galligan | 89df6d1 | 2015-03-09 15:52:29 -0700 | [diff] [blame] | 34 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 35 | res = aom_codec_enc_init(&encoder_, CodecInterface(), &cfg_, init_flags_); |
| 36 | ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); |
Frank Galligan | 89df6d1 | 2015-03-09 15:52:29 -0700 | [diff] [blame] | 37 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 38 | #if CONFIG_AV1_ENCODER |
| 39 | if (CodecInterface() == &aom_codec_av1_cx_algo) { |
| 40 | // Default to 1 tile column for AV1. With CONFIG_EXT_TILE, the |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 41 | // default is already the largest possible tile size |
Geza Lore | 67a2ff7 | 2016-05-03 11:53:55 +0100 | [diff] [blame] | 42 | #if !CONFIG_EXT_TILE |
Jingning Han | 41be09a | 2015-08-19 14:13:18 -0700 | [diff] [blame] | 43 | const int log2_tile_columns = 0; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 44 | res = aom_codec_control_(&encoder_, AV1E_SET_TILE_COLUMNS, |
Jingning Han | 41be09a | 2015-08-19 14:13:18 -0700 | [diff] [blame] | 45 | log2_tile_columns); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 46 | ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); |
Geza Lore | 67a2ff7 | 2016-05-03 11:53:55 +0100 | [diff] [blame] | 47 | #endif // !CONFIG_EXT_TILE |
Jingning Han | 41be09a | 2015-08-19 14:13:18 -0700 | [diff] [blame] | 48 | } else |
| 49 | #endif |
Yaowu Xu | 0924bcd | 2016-05-20 11:33:07 -0700 | [diff] [blame] | 50 | { |
Frank Galligan | 89df6d1 | 2015-03-09 15:52:29 -0700 | [diff] [blame] | 51 | } |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | |
Adrian Grange | 4206c6d | 2012-10-02 11:03:09 -0700 | [diff] [blame] | 55 | void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) { |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 56 | if (video->img()) |
Adrian Grange | 4206c6d | 2012-10-02 11:03:09 -0700 | [diff] [blame] | 57 | EncodeFrameInternal(*video, frame_flags); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 58 | else |
| 59 | Flush(); |
| 60 | |
| 61 | // Handle twopass stats |
| 62 | CxDataIterator iter = GetCxData(); |
| 63 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 64 | while (const aom_codec_cx_pkt_t *pkt = iter.Next()) { |
| 65 | if (pkt->kind != AOM_CODEC_STATS_PKT) continue; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 66 | |
| 67 | stats_->Append(*pkt); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void Encoder::EncodeFrameInternal(const VideoSource &video, |
Adrian Grange | 4206c6d | 2012-10-02 11:03:09 -0700 | [diff] [blame] | 72 | const unsigned long frame_flags) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 73 | aom_codec_err_t res; |
| 74 | const aom_image_t *img = video.img(); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 75 | |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 76 | // Handle frame resizing |
| 77 | if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { |
| 78 | cfg_.g_w = img->d_w; |
| 79 | cfg_.g_h = img->d_h; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 80 | res = aom_codec_enc_config_set(&encoder_, &cfg_); |
| 81 | ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | // Encode the frame |
Sean DuBois | 47cc255 | 2018-01-23 07:44:16 +0000 | [diff] [blame] | 85 | API_REGISTER_STATE_CHECK(res = |
| 86 | aom_codec_encode(&encoder_, img, video.pts(), |
| 87 | video.duration(), frame_flags)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 88 | ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | void Encoder::Flush() { |
Sean DuBois | 47cc255 | 2018-01-23 07:44:16 +0000 | [diff] [blame] | 92 | const aom_codec_err_t res = aom_codec_encode(&encoder_, NULL, 0, 0, 0); |
Deb Mukherjee | bdbaa5b | 2014-07-18 03:06:07 -0700 | [diff] [blame] | 93 | if (!encoder_.priv) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 94 | ASSERT_EQ(AOM_CODEC_ERROR, res) << EncoderError(); |
Deb Mukherjee | bdbaa5b | 2014-07-18 03:06:07 -0700 | [diff] [blame] | 95 | else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 96 | ASSERT_EQ(AOM_CODEC_OK, res) << EncoderError(); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 97 | } |
| 98 | |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 99 | void EncoderTest::InitializeConfig() { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 100 | const aom_codec_err_t res = codec_->DefaultEncoderConfig(&cfg_, 0); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 101 | ASSERT_EQ(AOM_CODEC_OK, res); |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 102 | } |
| 103 | |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 104 | void EncoderTest::SetMode(TestMode mode) { |
| 105 | switch (mode) { |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 106 | case kOnePassGood: |
Sean DuBois | 47cc255 | 2018-01-23 07:44:16 +0000 | [diff] [blame] | 107 | case kTwoPassGood: break; |
| 108 | case kRealTime: cfg_.g_lag_in_frames = 0; break; |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 109 | default: ASSERT_TRUE(false) << "Unexpected mode " << mode; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 110 | } |
Thomas Daede | 8082614 | 2017-03-20 15:44:24 -0700 | [diff] [blame] | 111 | mode_ = mode; |
Thomas Daede | 6eca835 | 2017-03-17 14:14:12 -0700 | [diff] [blame] | 112 | if (mode == kTwoPassGood) |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 113 | passes_ = 2; |
| 114 | else |
| 115 | passes_ = 1; |
| 116 | } |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 117 | |
Yaowu Xu | 4ff59b5 | 2017-04-24 12:41:56 -0700 | [diff] [blame] | 118 | static bool compare_plane(const uint8_t *const buf1, int stride1, |
| 119 | const uint8_t *const buf2, int stride2, int w, int h, |
| 120 | int *const mismatch_row, int *const mismatch_col, |
| 121 | int *const mismatch_pix1, int *const mismatch_pix2) { |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 122 | int r, c; |
| 123 | |
| 124 | for (r = 0; r < h; ++r) { |
| 125 | for (c = 0; c < w; ++c) { |
| 126 | const int pix1 = buf1[r * stride1 + c]; |
| 127 | const int pix2 = buf2[r * stride2 + c]; |
| 128 | |
| 129 | if (pix1 != pix2) { |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 130 | if (mismatch_row != NULL) *mismatch_row = r; |
| 131 | if (mismatch_col != NULL) *mismatch_col = c; |
| 132 | if (mismatch_pix1 != NULL) *mismatch_pix1 = pix1; |
| 133 | if (mismatch_pix2 != NULL) *mismatch_pix2 = pix2; |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 134 | return false; |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | return true; |
| 140 | } |
| 141 | |
Yaowu Xu | c953aea | 2012-08-30 13:43:15 -0700 | [diff] [blame] | 142 | // The function should return "true" most of the time, therefore no early |
| 143 | // break-out is implemented within the match checking process. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 144 | static bool compare_img(const aom_image_t *img1, const aom_image_t *img2, |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 145 | int *const mismatch_row, int *const mismatch_col, |
| 146 | int *const mismatch_plane, int *const mismatch_pix1, |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 147 | int *const mismatch_pix2) { |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 148 | #if CONFIG_CICP |
| 149 | if (img1->fmt != img2->fmt || img1->cp != img2->cp || img1->tc != img2->tc || |
| 150 | img1->mc != img2->mc || img1->d_w != img2->d_w || |
Imdad Sardharwalla | 26ac047 | 2018-01-18 15:00:24 +0000 | [diff] [blame] | 151 | img1->d_h != img2->d_h || img1->monochrome != img2->monochrome) { |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 152 | #else |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 153 | if (img1->fmt != img2->fmt || img1->cs != img2->cs || |
Imdad Sardharwalla | 26ac047 | 2018-01-18 15:00:24 +0000 | [diff] [blame] | 154 | img1->d_w != img2->d_w || img1->d_h != img2->d_h || |
| 155 | img1->monochrome != img2->monochrome) { |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 156 | #endif |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 157 | if (mismatch_row != NULL) *mismatch_row = -1; |
| 158 | if (mismatch_col != NULL) *mismatch_col = -1; |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 159 | return false; |
| 160 | } |
| 161 | |
Imdad Sardharwalla | 26ac047 | 2018-01-18 15:00:24 +0000 | [diff] [blame] | 162 | const int num_planes = img1->monochrome ? 1 : 3; |
| 163 | for (int plane = 0; plane < num_planes; plane++) { |
Sebastien Alaiwan | cdcf4b0 | 2017-09-21 11:29:47 +0200 | [diff] [blame] | 164 | if (!compare_plane(img1->planes[plane], img1->stride[plane], |
| 165 | img2->planes[plane], img2->stride[plane], |
| 166 | aom_img_plane_width(img1, plane), |
| 167 | aom_img_plane_height(img1, plane), mismatch_row, |
| 168 | mismatch_col, mismatch_pix1, mismatch_pix2)) { |
| 169 | if (mismatch_plane != NULL) *mismatch_plane = plane; |
| 170 | return false; |
| 171 | } |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | return true; |
Yaowu Xu | c953aea | 2012-08-30 13:43:15 -0700 | [diff] [blame] | 175 | } |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 176 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 177 | void EncoderTest::MismatchHook(const aom_image_t *img_enc, |
| 178 | const aom_image_t *img_dec) { |
Geza Lore | 7de2ba3 | 2016-06-19 21:35:01 +0100 | [diff] [blame] | 179 | int mismatch_row = 0; |
| 180 | int mismatch_col = 0; |
| 181 | int mismatch_plane = 0; |
| 182 | int mismatch_pix_enc = 0; |
| 183 | int mismatch_pix_dec = 0; |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 184 | |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 185 | ASSERT_FALSE(compare_img(img_enc, img_dec, &mismatch_row, &mismatch_col, |
| 186 | &mismatch_plane, &mismatch_pix_enc, |
Geza Lore | e0dcab9 | 2016-05-09 13:19:34 +0100 | [diff] [blame] | 187 | &mismatch_pix_dec)); |
| 188 | |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 189 | GTEST_FAIL() << "Encode/Decode mismatch found:" << std::endl |
| 190 | << " pixel value enc/dec: " << mismatch_pix_enc << "/" |
| 191 | << mismatch_pix_dec << std::endl |
| 192 | << " plane: " << mismatch_plane << std::endl |
| 193 | << " row/col: " << mismatch_row << "/" |
| 194 | << mismatch_col << std::endl; |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 195 | } |
| 196 | |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 197 | void EncoderTest::RunLoop(VideoSource *video) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 198 | aom_codec_dec_cfg_t dec_cfg = aom_codec_dec_cfg_t(); |
Sebastien Alaiwan | 8b7a4e1 | 2017-06-13 11:25:57 +0200 | [diff] [blame] | 199 | dec_cfg.allow_lowbitdepth = 1; |
hkuang | 9353607 | 2014-11-20 15:39:56 -0800 | [diff] [blame] | 200 | |
Adrian Grange | 30f58b5 | 2012-10-02 09:36:41 -0700 | [diff] [blame] | 201 | stats_.Reset(); |
| 202 | |
Ronald S. Bultje | e189edf | 2013-03-01 12:43:10 -0800 | [diff] [blame] | 203 | ASSERT_TRUE(passes_ == 1 || passes_ == 2); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 204 | for (unsigned int pass = 0; pass < passes_; pass++) { |
James Zern | 51ebb9a | 2012-08-08 14:16:08 -0700 | [diff] [blame] | 205 | last_pts_ = 0; |
| 206 | |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 207 | if (passes_ == 1) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 208 | cfg_.g_pass = AOM_RC_ONE_PASS; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 209 | else if (pass == 0) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 210 | cfg_.g_pass = AOM_RC_FIRST_PASS; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 211 | else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 212 | cfg_.g_pass = AOM_RC_LAST_PASS; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 213 | |
| 214 | BeginPassHook(pass); |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 215 | testing::internal::scoped_ptr<Encoder> encoder( |
Sean DuBois | 47cc255 | 2018-01-23 07:44:16 +0000 | [diff] [blame] | 216 | codec_->CreateEncoder(cfg_, init_flags_, &stats_)); |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 217 | ASSERT_TRUE(encoder.get() != NULL); |
hkuang | 9353607 | 2014-11-20 15:39:56 -0800 | [diff] [blame] | 218 | |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 219 | ASSERT_NO_FATAL_FAILURE(video->Begin()); |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 220 | encoder->InitEncoder(video); |
Thomas Daede | 8082614 | 2017-03-20 15:44:24 -0700 | [diff] [blame] | 221 | |
| 222 | if (mode_ == kRealTime) { |
| 223 | encoder->Control(AOME_SET_ENABLEAUTOALTREF, 0); |
| 224 | } |
| 225 | |
James Zern | d1ff1e9 | 2015-08-27 16:05:52 -0700 | [diff] [blame] | 226 | ASSERT_FALSE(::testing::Test::HasFatalFailure()); |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 227 | |
hkuang | 9353607 | 2014-11-20 15:39:56 -0800 | [diff] [blame] | 228 | unsigned long dec_init_flags = 0; // NOLINT |
| 229 | // Use fragment decoder if encoder outputs partitions. |
| 230 | // NOTE: fragment decoder and partition encoder are only supported by VP8. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 231 | if (init_flags_ & AOM_CODEC_USE_OUTPUT_PARTITION) |
| 232 | dec_init_flags |= AOM_CODEC_USE_INPUT_FRAGMENTS; |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 233 | testing::internal::scoped_ptr<Decoder> decoder( |
James Zern | 3b96b76 | 2017-03-24 17:12:19 -0700 | [diff] [blame] | 234 | codec_->CreateDecoder(dec_cfg, dec_init_flags)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 235 | #if CONFIG_AV1 && CONFIG_EXT_TILE |
| 236 | if (decoder->IsAV1()) { |
Yunqing Wang | 8e5e338 | 2016-05-05 16:42:57 -0700 | [diff] [blame] | 237 | // Set dec_cfg.tile_row = -1 and dec_cfg.tile_col = -1 so that the whole |
| 238 | // frame is decoded. |
Yunqing Wang | 8ae64a9 | 2018-01-12 12:26:44 -0800 | [diff] [blame] | 239 | decoder->Control(AV1_SET_TILE_MODE, cfg_.large_scale_tile); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 240 | decoder->Control(AV1_SET_DECODE_TILE_ROW, -1); |
| 241 | decoder->Control(AV1_SET_DECODE_TILE_COL, -1); |
Yunqing Wang | 8e5e338 | 2016-05-05 16:42:57 -0700 | [diff] [blame] | 242 | } |
| 243 | #endif |
| 244 | |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 245 | bool again; |
Yunqing Wang | 3666478 | 2014-12-12 14:34:30 -0800 | [diff] [blame] | 246 | for (again = true; again; video->Next()) { |
Deb Mukherjee | 0d8723f | 2013-08-19 14:16:26 -0700 | [diff] [blame] | 247 | again = (video->img() != NULL); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 248 | |
| 249 | PreEncodeFrameHook(video); |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 250 | PreEncodeFrameHook(video, encoder.get()); |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 251 | encoder->EncodeFrame(video, frame_flags_); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 252 | |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 253 | CxDataIterator iter = encoder->GetCxData(); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 254 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 255 | bool has_cxdata = false; |
| 256 | bool has_dxdata = false; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 257 | while (const aom_codec_cx_pkt_t *pkt = iter.Next()) { |
John Koleszar | 522d4bf | 2013-03-05 12:23:34 -0800 | [diff] [blame] | 258 | pkt = MutateEncoderOutputHook(pkt); |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 259 | again = true; |
Adrian Grange | e6109db | 2012-10-02 11:27:29 -0700 | [diff] [blame] | 260 | switch (pkt->kind) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 261 | case AOM_CODEC_CX_FRAME_PKT: |
Adrian Grange | e6109db | 2012-10-02 11:27:29 -0700 | [diff] [blame] | 262 | has_cxdata = true; |
Alex Converse | 1c1bc94 | 2016-07-21 11:36:41 -0700 | [diff] [blame] | 263 | if (decoder.get() != NULL && DoDecode()) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 264 | aom_codec_err_t res_dec = decoder->DecodeFrame( |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 265 | (const uint8_t *)pkt->data.frame.buf, pkt->data.frame.sz); |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 266 | |
Urvang Joshi | d71a231 | 2016-07-14 12:33:48 -0700 | [diff] [blame] | 267 | if (!HandleDecodeResult(res_dec, decoder.get())) break; |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 268 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 269 | has_dxdata = true; |
| 270 | } |
Adrian Grange | e6109db | 2012-10-02 11:27:29 -0700 | [diff] [blame] | 271 | ASSERT_GE(pkt->data.frame.pts, last_pts_); |
| 272 | last_pts_ = pkt->data.frame.pts; |
| 273 | FramePktHook(pkt); |
| 274 | break; |
| 275 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 276 | case AOM_CODEC_PSNR_PKT: PSNRPktHook(pkt); break; |
Adrian Grange | e6109db | 2012-10-02 11:27:29 -0700 | [diff] [blame] | 277 | |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 278 | default: break; |
Adrian Grange | e6109db | 2012-10-02 11:27:29 -0700 | [diff] [blame] | 279 | } |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 280 | } |
| 281 | |
hkuang | 9353607 | 2014-11-20 15:39:56 -0800 | [diff] [blame] | 282 | // Flush the decoder when there are no more fragments. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 283 | if ((init_flags_ & AOM_CODEC_USE_OUTPUT_PARTITION) && has_dxdata) { |
| 284 | const aom_codec_err_t res_dec = decoder->DecodeFrame(NULL, 0); |
Urvang Joshi | d71a231 | 2016-07-14 12:33:48 -0700 | [diff] [blame] | 285 | if (!HandleDecodeResult(res_dec, decoder.get())) break; |
hkuang | 9353607 | 2014-11-20 15:39:56 -0800 | [diff] [blame] | 286 | } |
| 287 | |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 288 | if (has_dxdata && has_cxdata) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 289 | const aom_image_t *img_enc = encoder->GetPreviewFrame(); |
John Koleszar | 706cafe | 2013-01-18 11:51:12 -0800 | [diff] [blame] | 290 | DxDataIterator dec_iter = decoder->GetDxData(); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 291 | const aom_image_t *img_dec = dec_iter.Next(); |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 292 | if (img_enc && img_dec) { |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 293 | const bool res = |
| 294 | compare_img(img_enc, img_dec, NULL, NULL, NULL, NULL, NULL); |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 295 | if (!res) { // Mismatch |
| 296 | MismatchHook(img_enc, img_dec); |
| 297 | } |
Yaowu Xu | c953aea | 2012-08-30 13:43:15 -0700 | [diff] [blame] | 298 | } |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 299 | if (img_dec) DecompressedFrameHook(*img_dec, video->pts()); |
Yaowu Xu | c953aea | 2012-08-30 13:43:15 -0700 | [diff] [blame] | 300 | } |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 301 | if (!Continue()) break; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | EndPassHook(); |
| 305 | |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 306 | if (!Continue()) break; |
John Koleszar | b9180fc | 2012-05-16 15:27:00 -0700 | [diff] [blame] | 307 | } |
| 308 | } |
Deb Mukherjee | 01cafaa | 2013-01-15 06:43:35 -0800 | [diff] [blame] | 309 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 310 | } // namespace libaom_test |