diff options
Diffstat (limited to 'third_party/aom/test/encode_test_driver.cc')
-rw-r--r-- | third_party/aom/test/encode_test_driver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/aom/test/encode_test_driver.cc b/third_party/aom/test/encode_test_driver.cc index 80f155ab2..ec168e969 100644 --- a/third_party/aom/test/encode_test_driver.cc +++ b/third_party/aom/test/encode_test_driver.cc @@ -99,7 +99,6 @@ void Encoder::Flush() { void EncoderTest::InitializeConfig() { const aom_codec_err_t res = codec_->DefaultEncoderConfig(&cfg_, 0); - dec_cfg_ = aom_codec_dec_cfg_t(); ASSERT_EQ(AOM_CODEC_OK, res); } @@ -211,6 +210,7 @@ void EncoderTest::MismatchHook(const aom_image_t *img_enc, void EncoderTest::RunLoop(VideoSource *video) { aom_codec_dec_cfg_t dec_cfg = aom_codec_dec_cfg_t(); + dec_cfg.allow_lowbitdepth = 1; stats_.Reset(); |