vp9->vpx in --enable-vp9-highbitdepth Also changed all related macros and tests Change-Id: I5269578c0f716fd391111a43932f856778494d29
diff --git a/configure b/configure index 288a2bf..cfdf53d 100755 --- a/configure +++ b/configure
@@ -34,7 +34,7 @@ ${toggle_codec_srcs} in/exclude codec library source code ${toggle_debug_libs} in/exclude debug version of libraries ${toggle_static_msvcrt} use static MSVCRT (VS builds only) - ${toggle_vp9_highbitdepth} use VP9 high bit depth (10/12) profiles + ${toggle_vpx_highbitdepth} use VP9 high bit depth (10/12) profiles ${toggle_better_hw_compatibility} enable encoder to produce streams with better hardware decoder compatibility @@ -309,7 +309,7 @@ temporal_denoising vp9_temporal_denoising coefficient_range_checking - vp9_highbitdepth + vpx_highbitdepth better_hw_compatibility experimental size_limit @@ -370,7 +370,7 @@ vp9_temporal_denoising coefficient_range_checking better_hw_compatibility - vp9_highbitdepth + vpx_highbitdepth experimental "
diff --git a/examples/vp9_spatial_svc_encoder.c b/examples/vp9_spatial_svc_encoder.c index d2b3688..5fac82b 100644 --- a/examples/vp9_spatial_svc_encoder.c +++ b/examples/vp9_spatial_svc_encoder.c
@@ -83,7 +83,7 @@ static const arg_def_t aqmode_arg = ARG_DEF("aq", "aqmode", 1, "aq-mode off/on"); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const struct arg_enum_list bitdepth_enum[] = { {"8", VPX_BITS_8}, {"10", VPX_BITS_10}, @@ -94,7 +94,7 @@ static const arg_def_t bitdepth_arg = ARG_DEF_ENUM("d", "bit-depth", 1, "Bit depth for codec 8, 10 or 12. ", bitdepth_enum); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static const arg_def_t *svc_args[] = { @@ -108,7 +108,7 @@ &output_rc_stats_arg, #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH &bitdepth_arg, #endif &speed_arg, @@ -265,7 +265,7 @@ enc_cfg->g_lag_in_frames = arg_parse_uint(&arg); } else if (arg_match(&arg, &rc_end_usage_arg, argi)) { enc_cfg->rc_end_usage = arg_parse_uint(&arg); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else if (arg_match(&arg, &bitdepth_arg, argi)) { enc_cfg->g_bit_depth = arg_parse_enum_or_int(&arg); switch (enc_cfg->g_bit_depth) { @@ -285,7 +285,7 @@ die("Error: Invalid bit depth selected (%d)\n", enc_cfg->g_bit_depth); break; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } else { ++argj; } @@ -634,7 +634,7 @@ parse_command_line(argc, argv, &app_input, &svc_ctx, &enc_cfg); // Allocate image buffer -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (!vpx_img_alloc(&raw, enc_cfg.g_input_bit_depth == 8 ? VPX_IMG_FMT_I420 : VPX_IMG_FMT_I42016, enc_cfg.g_w, enc_cfg.g_h, 32)) { @@ -644,7 +644,7 @@ if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) { die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (!(infile = fopen(app_input.input_filename, "rb"))) die("Failed to open %s for reading\n", app_input.input_filename);
diff --git a/examples/vpx_temporal_svc_encoder.c b/examples/vpx_temporal_svc_encoder.c index 5adda9e..33b0038 100644 --- a/examples/vpx_temporal_svc_encoder.c +++ b/examples/vpx_temporal_svc_encoder.c
@@ -492,13 +492,13 @@ struct RateControlMetrics rc; int64_t cx_time = 0; const int min_args_base = 11; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_bit_depth_t bit_depth = VPX_BITS_8; int input_bit_depth = 8; const int min_args = min_args_base + 1; #else const int min_args = min_args_base; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH double sum_bitrate = 0.0; double sum_bitrate2 = 0.0; double framerate = 30.0; @@ -506,7 +506,7 @@ exec_name = argv[0]; // Check usage and arguments. if (argc < min_args) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH die("Usage: %s <infile> <outfile> <codec_type(vp8/vp9)> <width> <height> " "<rate_num> <rate_den> <speed> <frame_drop_threshold> <mode> " "<Rate_0> ... <Rate_nlayers-1> <bit-depth> \n", argv[0]); @@ -514,7 +514,7 @@ die("Usage: %s <infile> <outfile> <codec_type(vp8/vp9)> <width> <height> " "<rate_num> <rate_den> <speed> <frame_drop_threshold> <mode> " "<Rate_0> ... <Rate_nlayers-1> \n", argv[0]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } encoder = get_vpx_encoder_by_name(argv[3]); @@ -538,7 +538,7 @@ die("Invalid number of arguments"); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (strtol(argv[argc-1], NULL, 0)) { case 8: bit_depth = VPX_BITS_8; @@ -565,7 +565,7 @@ if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, width, height, 32)) { die("Failed to allocate image", width, height); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Populate encoder configuration. res = vpx_codec_enc_config_default(encoder->codec_interface(), &cfg, 0); @@ -578,13 +578,13 @@ cfg.g_w = width; cfg.g_h = height; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (bit_depth != VPX_BITS_8) { cfg.g_bit_depth = bit_depth; cfg.g_input_bit_depth = input_bit_depth; cfg.g_profile = 2; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Timebase format e.g. 30fps: numerator=1, demoninator = 30. cfg.g_timebase.num = strtol(argv[6], NULL, 0); @@ -672,13 +672,13 @@ cfg.ss_number_layers = 1; // Initialize codec. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (vpx_codec_enc_init( &codec, encoder->codec_interface(), &cfg, bit_depth == VPX_BITS_8 ? 0 : VPX_CODEC_USE_HIGHBITDEPTH)) #else if (vpx_codec_enc_init(&codec, encoder->codec_interface(), &cfg, 0)) -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH die_codec(&codec, "Failed to initialize encoder"); if (strncmp(encoder->name, "vp8", 3) == 0) {
diff --git a/test/arf_freq_test.cc b/test/arf_freq_test.cc index c936d19..761e7b5 100644 --- a/test/arf_freq_test.cc +++ b/test/arf_freq_test.cc
@@ -50,9 +50,9 @@ 8, VPX_IMG_FMT_I420, VPX_BITS_8, 0}, {"rush_hour_444.y4m", 352, 288, 30, 1, 8, VPX_IMG_FMT_I444, VPX_BITS_8, 1}, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // Add list of profile 2/3 test videos here ... -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; const TestEncodeParam kEncodeVectors[] = { @@ -224,7 +224,7 @@ delete(video); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH # if CONFIG_VP10_ENCODER // TODO(angiebird): 25-29 fail in high bitdepth mode. INSTANTIATE_TEST_CASE_P( @@ -242,5 +242,5 @@ ::testing::ValuesIn(kTestVectors), ::testing::ValuesIn(kEncodeVectors), ::testing::ValuesIn(kMinArfVectors)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // namespace
diff --git a/test/convolve_test.cc b/test/convolve_test.cc index 60ba928..bb2d219 100644 --- a/test/convolve_test.cc +++ b/test/convolve_test.cc
@@ -189,7 +189,7 @@ output_width, output_height); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void highbd_filter_block2d_8_c(const uint16_t *src_ptr, const unsigned int src_stride, const int16_t *HFilter, @@ -308,7 +308,7 @@ highbd_block2d_average_c(tmp, 64, dst_ptr, dst_stride, output_width, output_height, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH class ConvolveTest : public ::testing::TestWithParam<ConvolveParam> { public: @@ -320,7 +320,7 @@ vpx_memalign(kDataAlignment, kOutputBufferSize)); output_ref_ = reinterpret_cast<uint8_t*>( vpx_memalign(kDataAlignment, kOutputBufferSize)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH input16_ = reinterpret_cast<uint16_t*>( vpx_memalign(kDataAlignment, (kInputBufferSize + 1) * sizeof(uint16_t))) + 1; @@ -340,7 +340,7 @@ output_ = NULL; vpx_free(output_ref_); output_ref_ = NULL; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_free(input16_ - 1); input16_ = NULL; vpx_free(output16_); @@ -375,7 +375,7 @@ virtual void SetUp() { UUT_ = GET_PARAM(2); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ != 0) mask_ = (1 << UUT_->use_highbd_) - 1; else @@ -393,12 +393,12 @@ for (int i = 0; i < kInputBufferSize; ++i) { if (i & 1) { input_[i] = 255; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH input16_[i] = mask_; #endif } else { input_[i] = prng.Rand8Extremes(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH input16_[i] = prng.Rand16() & mask_; #endif } @@ -407,14 +407,14 @@ void SetConstantInput(int value) { memset(input_, value, kInputBufferSize); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_memset16(input16_, value, kInputBufferSize); #endif } void CopyOutputToRef() { memcpy(output_ref_, output_, kOutputBufferSize); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH memcpy(output16_ref_, output16_, kOutputBufferSize); #endif } @@ -427,7 +427,7 @@ } uint8_t *input() const { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { return input_ + BorderTop() * kOuterBlockSize + BorderLeft(); } else { @@ -440,7 +440,7 @@ } uint8_t *output() const { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { return output_ + BorderTop() * kOuterBlockSize + BorderLeft(); } else { @@ -453,7 +453,7 @@ } uint8_t *output_ref() const { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { return output_ref_ + BorderTop() * kOuterBlockSize + BorderLeft(); } else { @@ -466,7 +466,7 @@ } uint16_t lookup(uint8_t *list, int index) const { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { return list[index]; } else { @@ -478,7 +478,7 @@ } void assign_val(uint8_t *list, int index, uint16_t val) const { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { list[index] = (uint8_t) val; } else { @@ -497,7 +497,7 @@ unsigned int dst_stride, unsigned int output_width, unsigned int output_height) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { filter_average_block2d_8_c(src_ptr, src_stride, HFilter, VFilter, dst_ptr, dst_stride, output_width, @@ -524,7 +524,7 @@ unsigned int dst_stride, unsigned int output_width, unsigned int output_height) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0) { filter_block2d_8_c(src_ptr, src_stride, HFilter, VFilter, dst_ptr, dst_stride, output_width, output_height); @@ -544,7 +544,7 @@ static uint8_t* input_; static uint8_t* output_; static uint8_t* output_ref_; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static uint16_t* input16_; static uint16_t* output16_; static uint16_t* output16_ref_; @@ -555,7 +555,7 @@ uint8_t* ConvolveTest::input_ = NULL; uint8_t* ConvolveTest::output_ = NULL; uint8_t* ConvolveTest::output_ref_ = NULL; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint16_t* ConvolveTest::input16_ = NULL; uint16_t* ConvolveTest::output16_ = NULL; uint16_t* ConvolveTest::output16_ref_ = NULL; @@ -685,7 +685,7 @@ TEST_P(ConvolveTest, MatchesReferenceSubpixelFilter) { uint8_t* const in = input(); uint8_t* const out = output(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint8_t ref8[kOutputStride * kMaxDimension]; uint16_t ref16[kOutputStride * kMaxDimension]; uint8_t* ref; @@ -747,7 +747,7 @@ TEST_P(ConvolveTest, MatchesReferenceAveragingSubpixelFilter) { uint8_t* const in = input(); uint8_t* const out = output(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint8_t ref8[kOutputStride * kMaxDimension]; uint16_t ref16[kOutputStride * kMaxDimension]; uint8_t* ref; @@ -765,7 +765,7 @@ for (int y = 0; y < Height(); ++y) { for (int x = 0; x < Width(); ++x) { uint16_t r; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0 || UUT_->use_highbd_ == 8) { r = prng.Rand8Extremes(); } else { @@ -829,7 +829,7 @@ TEST_P(ConvolveTest, FilterExtremes) { uint8_t *const in = input(); uint8_t *const out = output(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint8_t ref8[kOutputStride * kMaxDimension]; uint16_t ref16[kOutputStride * kMaxDimension]; uint8_t *ref; @@ -847,7 +847,7 @@ for (int y = 0; y < Height(); ++y) { for (int x = 0; x < Width(); ++x) { uint16_t r; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (UUT_->use_highbd_ == 0 || UUT_->use_highbd_ == 8) { r = prng.Rand8Extremes(); } else { @@ -866,7 +866,7 @@ while (seed_val < 256) { for (int y = 0; y < 8; ++y) { for (int x = 0; x < 8; ++x) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH assign_val(in, y * kOutputStride + x - SUBPEL_TAPS / 2 + 1, ((seed_val >> (axis ? y : x)) & 1) * mask_); #else @@ -959,7 +959,7 @@ using std::tr1::make_tuple; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define WRAP(func, bd) \ void wrap_ ## func ## _ ## bd(const uint8_t *src, ptrdiff_t src_stride, \ uint8_t *dst, ptrdiff_t dst_stride, \ @@ -1122,7 +1122,7 @@ #endif #if HAVE_SSE2 && ARCH_X86_64 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const ConvolveFunctions convolve8_sse2( #if CONFIG_USE_X86INC wrap_convolve_copy_sse2_8, wrap_convolve_avg_sse2_8, @@ -1227,7 +1227,7 @@ make_tuple(64, 32, &convolve8_sse2), make_tuple(32, 64, &convolve8_sse2), make_tuple(64, 64, &convolve8_sse2))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif #if HAVE_SSSE3
diff --git a/test/dct16x16_test.cc b/test/dct16x16_test.cc index 59bbfc8..225815a 100644 --- a/test/dct16x16_test.cc +++ b/test/dct16x16_test.cc
@@ -266,7 +266,7 @@ vp10_iht16x16_256_add_c(in, dest, stride, tx_type); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void idct16x16_10(const tran_low_t *in, uint8_t *out, int stride) { vpx_highbd_idct16x16_256_add_c(in, out, stride, 10); } @@ -318,7 +318,7 @@ vpx_highbd_idct16x16_10_add_sse2(in, out, stride, 12); } #endif // HAVE_SSE2 -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH class Trans16x16TestBase { public: @@ -339,7 +339,7 @@ DECLARE_ALIGNED(16, tran_low_t, test_temp_block[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); #endif @@ -350,7 +350,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); test_input_block[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -364,7 +364,7 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -372,7 +372,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -454,7 +454,7 @@ DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, ref[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref16[kNumCoeffs]); #endif @@ -476,7 +476,7 @@ // clear reconstructed pixel buffers memset(dst, 0, kNumCoeffs * sizeof(uint8_t)); memset(ref, 0, kNumCoeffs * sizeof(uint8_t)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH memset(dst16, 0, kNumCoeffs * sizeof(uint16_t)); memset(ref16, 0, kNumCoeffs * sizeof(uint16_t)); #endif @@ -488,7 +488,7 @@ if (bit_depth_ == VPX_BITS_8) { inv_txfm_ref(output_ref_block, ref, pitch_, tx_type_); ASM_REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { inv_txfm_ref(output_ref_block, CONVERT_TO_BYTEPTR(ref16), pitch_, tx_type_); @@ -499,7 +499,7 @@ if (bit_depth_ == VPX_BITS_8) { for (int j = 0; j < kNumCoeffs; ++j) EXPECT_EQ(ref[j], dst[j]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { for (int j = 0; j < kNumCoeffs; ++j) EXPECT_EQ(ref16[j], dst16[j]); @@ -515,10 +515,10 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int i = 0; i < count_test_block; ++i) { double out_r[kNumCoeffs]; @@ -529,12 +529,12 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); in[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; in[j] = src16[j] - dst16[j]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } @@ -544,20 +544,20 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, 16)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), 16)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else const uint32_t diff = dst[j] - src[j]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH const uint32_t error = diff * diff; EXPECT_GE(1u, error) << "Error: 16x16 IDCT has error " << error @@ -574,10 +574,10 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, ref[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref16[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int i = 0; i < count_test_block; ++i) { for (int j = 0; j < kNumCoeffs; ++j) { @@ -590,31 +590,31 @@ if (bit_depth_ == VPX_BITS_8) { dst[j] = 0; ref[j] = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { dst16[j] = 0; ref16[j] = 0; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } if (bit_depth_ == VPX_BITS_8) { ref_txfm(coeff, ref, pitch_); ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); } else { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH ref_txfm(coeff, CONVERT_TO_BYTEPTR(ref16), pitch_); ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), pitch_)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - ref[j] : dst16[j] - ref16[j]; #else const uint32_t diff = dst[j] - ref[j]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH const uint32_t error = diff * diff; EXPECT_EQ(0u, error) << "Error: 16x16 IDCT Comparison has error " << error @@ -646,7 +646,7 @@ fwd_txfm_ref = fdct16x16_ref; inv_txfm_ref = idct16x16_ref; mask_ = (1 << bit_depth_) - 1; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth_) { case VPX_BITS_10: inv_txfm_ref = idct16x16_10_ref; @@ -713,7 +713,7 @@ fwd_txfm_ref = fht16x16_ref; inv_txfm_ref = iht16x16_ref; mask_ = (1 << bit_depth_) - 1; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth_) { case VPX_BITS_10: inv_txfm_ref = iht16x16_10; @@ -794,7 +794,7 @@ using std::tr1::make_tuple; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans16x16DCT, ::testing::Values( @@ -806,9 +806,9 @@ C, Trans16x16DCT, ::testing::Values( make_tuple(&vpx_fdct16x16_c, &vpx_idct16x16_256_add_c, 0, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans16x16HT, ::testing::Values( @@ -832,9 +832,9 @@ make_tuple(&vp10_fht16x16_c, &vp10_iht16x16_256_add_c, 1, VPX_BITS_8), make_tuple(&vp10_fht16x16_c, &vp10_iht16x16_256_add_c, 2, VPX_BITS_8), make_tuple(&vp10_fht16x16_c, &vp10_iht16x16_256_add_c, 3, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, Trans16x16DCT, ::testing::Values( @@ -842,7 +842,7 @@ &vpx_idct16x16_256_add_neon, 0, VPX_BITS_8))); #endif -#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans16x16DCT, ::testing::Values( @@ -859,9 +859,9 @@ VPX_BITS_8), make_tuple(&vp10_fht16x16_sse2, &vp10_iht16x16_256_add_sse2, 3, VPX_BITS_8))); -#endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans16x16DCT, ::testing::Values( @@ -899,9 +899,9 @@ &idct16x16_10_add_12_sse2, 3167, VPX_BITS_12), make_tuple(&idct16x16_12, &idct16x16_256_add_12_sse2, 3167, VPX_BITS_12))); -#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MSA, Trans16x16DCT, ::testing::Values( @@ -918,5 +918,5 @@ &vp10_iht16x16_256_add_msa, 2, VPX_BITS_8), make_tuple(&vp10_fht16x16_msa, &vp10_iht16x16_256_add_msa, 3, VPX_BITS_8))); -#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE } // namespace
diff --git a/test/dct32x32_test.cc b/test/dct32x32_test.cc index bd354cc..a574a64 100644 --- a/test/dct32x32_test.cc +++ b/test/dct32x32_test.cc
@@ -80,7 +80,7 @@ typedef std::tr1::tuple<FwdTxfmFunc, InvTxfmFunc, int, vpx_bit_depth_t> Trans32x32Param; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void idct32x32_8(const tran_low_t *in, uint8_t *out, int stride) { vpx_highbd_idct32x32_1024_add_c(in, out, stride, 8); } @@ -92,7 +92,7 @@ void idct32x32_12(const tran_low_t *in, uint8_t *out, int stride) { vpx_highbd_idct32x32_1024_add_c(in, out, stride, 12); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH class Trans32x32Test : public ::testing::TestWithParam<Trans32x32Param> { public: @@ -125,7 +125,7 @@ DECLARE_ALIGNED(16, tran_low_t, test_temp_block[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); #endif @@ -137,7 +137,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); test_input_block[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -149,7 +149,7 @@ ASM_REGISTER_STATE_CHECK(fwd_txfm_(test_input_block, test_temp_block, 32)); if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(inv_txfm_(test_temp_block, dst, 32)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(inv_txfm_(test_temp_block, CONVERT_TO_BYTEPTR(dst16), 32)); @@ -157,7 +157,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -261,7 +261,7 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); #endif @@ -275,7 +275,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); in[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -289,13 +289,13 @@ coeff[j] = static_cast<tran_low_t>(round(out_r[j])); if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(inv_txfm_(coeff, dst, 32)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(inv_txfm_(coeff, CONVERT_TO_BYTEPTR(dst16), 32)); #endif } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -311,7 +311,7 @@ using std::tr1::make_tuple; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans32x32Test, ::testing::Values( @@ -335,9 +335,9 @@ &vpx_idct32x32_1024_add_c, 0, VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_c, &vpx_idct32x32_1024_add_c, 1, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, Trans32x32Test, ::testing::Values( @@ -345,9 +345,9 @@ &vpx_idct32x32_1024_add_neon, 0, VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_c, &vpx_idct32x32_1024_add_neon, 1, VPX_BITS_8))); -#endif // HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans32x32Test, ::testing::Values( @@ -355,9 +355,9 @@ &vpx_idct32x32_1024_add_sse2, 0, VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_sse2, &vpx_idct32x32_1024_add_sse2, 1, VPX_BITS_8))); -#endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans32x32Test, ::testing::Values( @@ -371,9 +371,9 @@ VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_sse2, &vpx_idct32x32_1024_add_c, 1, VPX_BITS_8))); -#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_AVX2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_AVX2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( AVX2, Trans32x32Test, ::testing::Values( @@ -381,9 +381,9 @@ &vpx_idct32x32_1024_add_sse2, 0, VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_avx2, &vpx_idct32x32_1024_add_sse2, 1, VPX_BITS_8))); -#endif // HAVE_AVX2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_AVX2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MSA, Trans32x32Test, ::testing::Values( @@ -391,5 +391,5 @@ &vpx_idct32x32_1024_add_msa, 0, VPX_BITS_8), make_tuple(&vpx_fdct32x32_rd_msa, &vpx_idct32x32_1024_add_msa, 1, VPX_BITS_8))); -#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE } // namespace
diff --git a/test/decode_api_test.cc b/test/decode_api_test.cc index 318351b..feb4cc0 100644 --- a/test/decode_api_test.cc +++ b/test/decode_api_test.cc
@@ -133,7 +133,7 @@ vpx_codec_ctx_t dec; EXPECT_EQ(VPX_CODEC_OK, vpx_codec_dec_init(&dec, codec, NULL, 0)); const uint32_t frame_size = static_cast<uint32_t>(video.frame_size()); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH EXPECT_EQ(VPX_CODEC_MEM_ERROR, vpx_codec_decode(&dec, video.cxdata(), frame_size, NULL, 0)); #else
diff --git a/test/end_to_end_test.cc b/test/end_to_end_test.cc index a69f89b..747d2e0 100644 --- a/test/end_to_end_test.cc +++ b/test/end_to_end_test.cc
@@ -48,7 +48,7 @@ {"park_joy_90p_8_422.y4m", 8, VPX_IMG_FMT_I422, VPX_BITS_8, 1}, {"park_joy_90p_8_444.y4m", 8, VPX_IMG_FMT_I444, VPX_BITS_8, 1}, {"park_joy_90p_8_440.yuv", 8, VPX_IMG_FMT_I440, VPX_BITS_8, 1}, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH {"park_joy_90p_10_420.y4m", 10, VPX_IMG_FMT_I42016, VPX_BITS_10, 2}, {"park_joy_90p_10_422.y4m", 10, VPX_IMG_FMT_I42216, VPX_BITS_10, 3}, {"park_joy_90p_10_444.y4m", 10, VPX_IMG_FMT_I44416, VPX_BITS_10, 3}, @@ -57,7 +57,7 @@ {"park_joy_90p_12_422.y4m", 12, VPX_IMG_FMT_I42216, VPX_BITS_12, 3}, {"park_joy_90p_12_444.y4m", 12, VPX_IMG_FMT_I44416, VPX_BITS_12, 3}, {"park_joy_90p_12_440.yuv", 12, VPX_IMG_FMT_I44016, VPX_BITS_12, 3}, -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; // Encoding modes tested @@ -181,7 +181,7 @@ delete(video); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH # if CONFIG_VP10_ENCODER // TODO(angiebird): many fail in high bitdepth mode. INSTANTIATE_TEST_CASE_P( @@ -199,5 +199,5 @@ ::testing::ValuesIn(kEncodingModeVectors), ::testing::ValuesIn(kTestVectors), ::testing::ValuesIn(kCpuUsedVectors)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // namespace
diff --git a/test/error_block_test.cc b/test/error_block_test.cc index 55d24ba..8a93591 100644 --- a/test/error_block_test.cc +++ b/test/error_block_test.cc
@@ -27,7 +27,7 @@ using libvpx_test::ACMRandom; namespace { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int kNumIterations = 1000; typedef int64_t (*ErrorBlockFunc)(const tran_low_t *coeff, @@ -160,52 +160,52 @@ using std::tr1::make_tuple; #if CONFIG_USE_X86INC -int64_t wrap_vp9_highbd_block_error_8bit_c(const tran_low_t *coeff, +int64_t wrap_vp10_highbd_block_error_8bit_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bps) { assert(bps == 8); - return vp9_highbd_block_error_8bit_c(coeff, dqcoeff, block_size, ssz); + return vp10_highbd_block_error_8bit_c(coeff, dqcoeff, block_size, ssz); } #if HAVE_SSE2 -int64_t wrap_vp9_highbd_block_error_8bit_sse2(const tran_low_t *coeff, +int64_t wrap_vp10_highbd_block_error_8bit_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bps) { assert(bps == 8); - return vp9_highbd_block_error_8bit_sse2(coeff, dqcoeff, block_size, ssz); + return vp10_highbd_block_error_8bit_sse2(coeff, dqcoeff, block_size, ssz); } INSTANTIATE_TEST_CASE_P( SSE2, ErrorBlockTest, ::testing::Values( - make_tuple(&vp9_highbd_block_error_sse2, - &vp9_highbd_block_error_c, VPX_BITS_10), - make_tuple(&vp9_highbd_block_error_sse2, - &vp9_highbd_block_error_c, VPX_BITS_12), - make_tuple(&vp9_highbd_block_error_sse2, - &vp9_highbd_block_error_c, VPX_BITS_8), - make_tuple(&wrap_vp9_highbd_block_error_8bit_sse2, - &wrap_vp9_highbd_block_error_8bit_c, VPX_BITS_8))); + make_tuple(&vp10_highbd_block_error_sse2, + &vp10_highbd_block_error_c, VPX_BITS_10), + make_tuple(&vp10_highbd_block_error_sse2, + &vp10_highbd_block_error_c, VPX_BITS_12), + make_tuple(&vp10_highbd_block_error_sse2, + &vp10_highbd_block_error_c, VPX_BITS_8), + make_tuple(&wrap_vp10_highbd_block_error_8bit_sse2, + &wrap_vp10_highbd_block_error_8bit_c, VPX_BITS_8))); #endif // HAVE_SSE2 #if HAVE_AVX -int64_t wrap_vp9_highbd_block_error_8bit_avx(const tran_low_t *coeff, +int64_t wrap_vp10_highbd_block_error_8bit_avx(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz, int bps) { assert(bps == 8); - return vp9_highbd_block_error_8bit_avx(coeff, dqcoeff, block_size, ssz); + return vp10_highbd_block_error_8bit_avx(coeff, dqcoeff, block_size, ssz); } INSTANTIATE_TEST_CASE_P( AVX, ErrorBlockTest, ::testing::Values( - make_tuple(&wrap_vp9_highbd_block_error_8bit_avx, - &wrap_vp9_highbd_block_error_8bit_c, VPX_BITS_8))); + make_tuple(&wrap_vp10_highbd_block_error_8bit_avx, + &wrap_vp10_highbd_block_error_8bit_c, VPX_BITS_8))); #endif // HAVE_AVX #endif // CONFIG_USE_X86INC -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // namespace
diff --git a/test/fdct4x4_test.cc b/test/fdct4x4_test.cc index f016e2d..8d8f569 100644 --- a/test/fdct4x4_test.cc +++ b/test/fdct4x4_test.cc
@@ -53,7 +53,7 @@ vp10_fwht4x4_c(in, out, stride); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) { vpx_highbd_idct4x4_16_add_c(in, out, stride, 10); } @@ -87,7 +87,7 @@ vpx_highbd_idct4x4_16_add_sse2(in, out, stride, 12); } #endif // HAVE_SSE2 -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH class Trans4x4TestBase { public: @@ -108,7 +108,7 @@ DECLARE_ALIGNED(16, tran_low_t, test_temp_block[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); #endif @@ -119,7 +119,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); test_input_block[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -132,7 +132,7 @@ test_temp_block, pitch_)); if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -140,7 +140,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -224,7 +224,7 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); #endif @@ -236,7 +236,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); in[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -249,7 +249,7 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -257,7 +257,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -415,7 +415,7 @@ } using std::tr1::make_tuple; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans4x4DCT, ::testing::Values( @@ -427,9 +427,9 @@ C, Trans4x4DCT, ::testing::Values( make_tuple(&vpx_fdct4x4_c, &vpx_idct4x4_16_add_c, 0, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans4x4HT, ::testing::Values( @@ -453,9 +453,9 @@ make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_c, 1, VPX_BITS_8), make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_c, 2, VPX_BITS_8), make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_c, 3, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, Trans4x4WHT, ::testing::Values( @@ -467,17 +467,17 @@ C, Trans4x4WHT, ::testing::Values( make_tuple(&vp10_fwht4x4_c, &vpx_iwht4x4_16_add_c, 0, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, Trans4x4DCT, ::testing::Values( make_tuple(&vpx_fdct4x4_c, &vpx_idct4x4_16_add_neon, 0, VPX_BITS_8))); -#endif // HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, Trans4x4HT, ::testing::Values( @@ -485,9 +485,9 @@ make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_neon, 1, VPX_BITS_8), make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_neon, 2, VPX_BITS_8), make_tuple(&vp10_fht4x4_c, &vp10_iht4x4_16_add_neon, 3, VPX_BITS_8))); -#endif // HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if CONFIG_USE_X86INC && HAVE_MMX && !CONFIG_VP9_HIGHBITDEPTH && \ +#if CONFIG_USE_X86INC && HAVE_MMX && !CONFIG_VPX_HIGHBITDEPTH && \ !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MMX, Trans4x4WHT, @@ -495,7 +495,7 @@ make_tuple(&vp10_fwht4x4_mmx, &vpx_iwht4x4_16_add_c, 0, VPX_BITS_8))); #endif -#if CONFIG_USE_X86INC && HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && \ +#if CONFIG_USE_X86INC && HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && \ !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans4x4WHT, @@ -503,7 +503,7 @@ make_tuple(&vp10_fwht4x4_c, &vpx_iwht4x4_16_add_sse2, 0, VPX_BITS_8))); #endif -#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans4x4DCT, ::testing::Values( @@ -517,9 +517,9 @@ make_tuple(&vp10_fht4x4_sse2, &vp10_iht4x4_16_add_sse2, 2, VPX_BITS_8), make_tuple(&vp10_fht4x4_sse2, &vp10_iht4x4_16_add_sse2, 3, VPX_BITS_8))); -#endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, Trans4x4DCT, ::testing::Values( @@ -537,9 +537,9 @@ make_tuple(&vp10_fht4x4_sse2, &vp10_iht4x4_16_add_c, 1, VPX_BITS_8), make_tuple(&vp10_fht4x4_sse2, &vp10_iht4x4_16_add_c, 2, VPX_BITS_8), make_tuple(&vp10_fht4x4_sse2, &vp10_iht4x4_16_add_c, 3, VPX_BITS_8))); -#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MSA, Trans4x4DCT, ::testing::Values( @@ -551,5 +551,5 @@ make_tuple(&vp10_fht4x4_msa, &vp10_iht4x4_16_add_msa, 1, VPX_BITS_8), make_tuple(&vp10_fht4x4_msa, &vp10_iht4x4_16_add_msa, 2, VPX_BITS_8), make_tuple(&vp10_fht4x4_msa, &vp10_iht4x4_16_add_msa, 3, VPX_BITS_8))); -#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE } // namespace
diff --git a/test/fdct8x8_test.cc b/test/fdct8x8_test.cc index 62e1b5d..66aa67b 100644 --- a/test/fdct8x8_test.cc +++ b/test/fdct8x8_test.cc
@@ -90,7 +90,7 @@ vp10_fht8x8_c(in, out, stride, tx_type); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void idct8x8_10(const tran_low_t *in, uint8_t *out, int stride) { vpx_highbd_idct8x8_64_add_c(in, out, stride, 10); } @@ -132,7 +132,7 @@ vpx_highbd_idct8x8_64_add_sse2(in, out, stride, 12); } #endif // HAVE_SSE2 -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH class FwdTrans8x8TestBase { public: @@ -219,7 +219,7 @@ DECLARE_ALIGNED(16, tran_low_t, test_temp_block[64]); DECLARE_ALIGNED(16, uint8_t, dst[64]); DECLARE_ALIGNED(16, uint8_t, src[64]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[64]); DECLARE_ALIGNED(16, uint16_t, src16[64]); #endif @@ -231,7 +231,7 @@ src[j] = rnd.Rand8(); dst[j] = rnd.Rand8(); test_input_block[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand16() & mask_; dst16[j] = rnd.Rand16() & mask_; @@ -256,7 +256,7 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -264,7 +264,7 @@ } for (int j = 0; j < 64; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -297,7 +297,7 @@ DECLARE_ALIGNED(16, tran_low_t, ref_temp_block[64]); DECLARE_ALIGNED(16, uint8_t, dst[64]); DECLARE_ALIGNED(16, uint8_t, src[64]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[64]); DECLARE_ALIGNED(16, uint16_t, src16[64]); #endif @@ -317,7 +317,7 @@ dst[j] = rnd.Rand8() % 2 ? 255 : 0; } test_input_block[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { if (i == 0) { src16[j] = mask_; @@ -341,7 +341,7 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK( RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -349,7 +349,7 @@ } for (int j = 0; j < 64; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -385,7 +385,7 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); #endif @@ -399,7 +399,7 @@ src[j] = rnd.Rand8() % 2 ? 255 : 0; dst[j] = src[j] > 0 ? 0 : 255; in[j] = src[j] - dst[j]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src16[j] = rnd.Rand8() % 2 ? mask_ : 0; dst16[j] = src16[j] > 0 ? 0 : mask_; @@ -414,7 +414,7 @@ if (bit_depth_ == VPX_BITS_8) { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), pitch_)); @@ -422,7 +422,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j]; #else @@ -472,7 +472,7 @@ DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]); DECLARE_ALIGNED(16, uint8_t, ref[kNumCoeffs]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref16[kNumCoeffs]); #endif @@ -489,7 +489,7 @@ if (bit_depth_ == VPX_BITS_8) { dst[j] = 0; ref[j] = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { dst16[j] = 0; ref16[j] = 0; @@ -499,7 +499,7 @@ if (bit_depth_ == VPX_BITS_8) { ref_txfm(coeff, ref, pitch_); ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { ref_txfm(coeff, CONVERT_TO_BYTEPTR(ref16), pitch_); ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), @@ -508,7 +508,7 @@ } for (int j = 0; j < kNumCoeffs; ++j) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint32_t diff = bit_depth_ == VPX_BITS_8 ? dst[j] - ref[j] : dst16[j] - ref16[j]; #else @@ -654,7 +654,7 @@ using std::tr1::make_tuple; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, FwdTrans8x8DCT, ::testing::Values( @@ -666,9 +666,9 @@ C, FwdTrans8x8DCT, ::testing::Values( make_tuple(&vpx_fdct8x8_c, &vpx_idct8x8_64_add_c, 0, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( C, FwdTrans8x8HT, ::testing::Values( @@ -692,17 +692,17 @@ make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_c, 1, VPX_BITS_8), make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_c, 2, VPX_BITS_8), make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_c, 3, VPX_BITS_8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, FwdTrans8x8DCT, ::testing::Values( make_tuple(&vpx_fdct8x8_neon, &vpx_idct8x8_64_add_neon, 0, VPX_BITS_8))); -#endif // HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON_ASM && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, FwdTrans8x8HT, ::testing::Values( @@ -710,9 +710,9 @@ make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_neon, 1, VPX_BITS_8), make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_neon, 2, VPX_BITS_8), make_tuple(&vp10_fht8x8_c, &vp10_iht8x8_64_add_neon, 3, VPX_BITS_8))); -#endif // HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, FwdTrans8x8DCT, ::testing::Values( @@ -726,9 +726,9 @@ make_tuple(&vp10_fht8x8_sse2, &vp10_iht8x8_64_add_sse2, 2, VPX_BITS_8), make_tuple(&vp10_fht8x8_sse2, &vp10_iht8x8_64_add_sse2, 3, VPX_BITS_8))); -#endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, FwdTrans8x8DCT, ::testing::Values( @@ -763,10 +763,10 @@ &idct8x8_10_add_12_sse2, 6225, VPX_BITS_12), make_tuple(&idct8x8_12, &idct8x8_64_add_12_sse2, 6225, VPX_BITS_12))); -#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_SSE2 && CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE #if HAVE_SSSE3 && CONFIG_USE_X86INC && ARCH_X86_64 && \ - !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE + !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSSE3, FwdTrans8x8DCT, ::testing::Values( @@ -774,7 +774,7 @@ VPX_BITS_8))); #endif -#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MSA, FwdTrans8x8DCT, ::testing::Values( @@ -786,5 +786,5 @@ make_tuple(&vp10_fht8x8_msa, &vp10_iht8x8_64_add_msa, 1, VPX_BITS_8), make_tuple(&vp10_fht8x8_msa, &vp10_iht8x8_64_add_msa, 2, VPX_BITS_8), make_tuple(&vp10_fht8x8_msa, &vp10_iht8x8_64_add_msa, 3, VPX_BITS_8))); -#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE } // namespace
diff --git a/test/intrapred_test.cc b/test/intrapred_test.cc index e102bc6..21abaa8 100644 --- a/test/intrapred_test.cc +++ b/test/intrapred_test.cc
@@ -130,7 +130,7 @@ using std::tr1::make_tuple; #if HAVE_SSE2 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #if CONFIG_USE_X86INC INSTANTIATE_TEST_CASE_P(SSE2_TO_C_8, VP9IntraPredTest, ::testing::Values( @@ -226,6 +226,6 @@ &vpx_highbd_tm_predictor_8x8_c, 8, 12))); #endif // CONFIG_USE_X86INC -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // HAVE_SSE2 } // namespace
diff --git a/test/lpf_8_test.cc b/test/lpf_8_test.cc index 6e391b4..048dca8a 100644 --- a/test/lpf_8_test.cc +++ b/test/lpf_8_test.cc
@@ -34,7 +34,7 @@ const int number_of_iterations = 10000; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef void (*loop_op_t)(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd); @@ -50,13 +50,13 @@ const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH typedef std::tr1::tuple<loop_op_t, loop_op_t, int, int> loop8_param_t; typedef std::tr1::tuple<dual_loop_op_t, dual_loop_op_t, int> dualloop8_param_t; #if HAVE_SSE2 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void wrapper_vertical_16_sse2(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) { @@ -104,11 +104,11 @@ int count) { vpx_lpf_vertical_16_dual_c(s, p, blimit, limit, thresh); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // HAVE_SSE2 #if HAVE_NEON_ASM -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // No neon high bitdepth functions. #else void wrapper_vertical_16_neon(uint8_t *s, int p, const uint8_t *blimit, @@ -134,10 +134,10 @@ int count) { vpx_lpf_vertical_16_dual_c(s, p, blimit, limit, thresh); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // HAVE_NEON_ASM -#if HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH) +#if HAVE_MSA && (!CONFIG_VPX_HIGHBITDEPTH) void wrapper_vertical_16_msa(uint8_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count) { @@ -149,7 +149,7 @@ int count) { vpx_lpf_vertical_16_c(s, p, blimit, limit, thresh); } -#endif // HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH) +#endif // HAVE_MSA && (!CONFIG_VPX_HIGHBITDEPTH) class Loop8Test6Param : public ::testing::TestWithParam<loop8_param_t> { public: @@ -194,14 +194,14 @@ TEST_P(Loop8Test6Param, OperationCheck) { ACMRandom rnd(ACMRandom::DeterministicSeed()); const int count_test_block = number_of_iterations; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int32_t bd = bit_depth_; DECLARE_ALIGNED(16, uint16_t, s[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref_s[kNumCoeffs]); #else DECLARE_ALIGNED(8, uint8_t, s[kNumCoeffs]); DECLARE_ALIGNED(8, uint8_t, ref_s[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int err_count_total = 0; int first_failure = -1; for (int i = 0; i < count_test_block; ++i) { @@ -252,7 +252,7 @@ } ref_s[j] = s[j]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit, limit, thresh, count_, bd); ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit, limit, thresh, count_, bd)); @@ -260,7 +260,7 @@ ref_loopfilter_op_(ref_s+8+p*8, p, blimit, limit, thresh, count_); ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit, limit, thresh, count_)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int j = 0; j < kNumCoeffs; ++j) { err_count += ref_s[j] != s[j]; @@ -279,14 +279,14 @@ TEST_P(Loop8Test6Param, ValueCheck) { ACMRandom rnd(ACMRandom::DeterministicSeed()); const int count_test_block = number_of_iterations; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int32_t bd = bit_depth_; DECLARE_ALIGNED(16, uint16_t, s[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref_s[kNumCoeffs]); #else DECLARE_ALIGNED(8, uint8_t, s[kNumCoeffs]); DECLARE_ALIGNED(8, uint8_t, ref_s[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int err_count_total = 0; int first_failure = -1; @@ -324,7 +324,7 @@ s[j] = rnd.Rand16() & mask_; ref_s[j] = s[j]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit, limit, thresh, count_, bd); ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit, limit, thresh, count_, bd)); @@ -332,7 +332,7 @@ ref_loopfilter_op_(ref_s+8+p*8, p, blimit, limit, thresh, count_); ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit, limit, thresh, count_)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int j = 0; j < kNumCoeffs; ++j) { err_count += ref_s[j] != s[j]; } @@ -350,14 +350,14 @@ TEST_P(Loop8Test9Param, OperationCheck) { ACMRandom rnd(ACMRandom::DeterministicSeed()); const int count_test_block = number_of_iterations; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int32_t bd = bit_depth_; DECLARE_ALIGNED(16, uint16_t, s[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref_s[kNumCoeffs]); #else DECLARE_ALIGNED(8, uint8_t, s[kNumCoeffs]); DECLARE_ALIGNED(8, uint8_t, ref_s[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int err_count_total = 0; int first_failure = -1; for (int i = 0; i < count_test_block; ++i) { @@ -423,7 +423,7 @@ } ref_s[j] = s[j]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1, bd); ASM_REGISTER_STATE_CHECK( @@ -435,7 +435,7 @@ ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int j = 0; j < kNumCoeffs; ++j) { err_count += ref_s[j] != s[j]; } @@ -453,13 +453,13 @@ TEST_P(Loop8Test9Param, ValueCheck) { ACMRandom rnd(ACMRandom::DeterministicSeed()); const int count_test_block = number_of_iterations; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, s[kNumCoeffs]); DECLARE_ALIGNED(16, uint16_t, ref_s[kNumCoeffs]); #else DECLARE_ALIGNED(8, uint8_t, s[kNumCoeffs]); DECLARE_ALIGNED(8, uint8_t, ref_s[kNumCoeffs]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int err_count_total = 0; int first_failure = -1; for (int i = 0; i < count_test_block; ++i) { @@ -499,7 +499,7 @@ s[j] = rnd.Rand16() & mask_; ref_s[j] = s[j]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int32_t bd = bit_depth_; ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1, bd); @@ -512,7 +512,7 @@ ASM_REGISTER_STATE_CHECK( loopfilter_op_(s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int j = 0; j < kNumCoeffs; ++j) { err_count += ref_s[j] != s[j]; } @@ -530,7 +530,7 @@ using std::tr1::make_tuple; #if HAVE_SSE2 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( SSE2, Loop8Test6Param, ::testing::Values( @@ -593,10 +593,10 @@ make_tuple(&wrapper_vertical_16_sse2, &wrapper_vertical_16_c, 8, 1), make_tuple(&wrapper_vertical_16_dual_sse2, &wrapper_vertical_16_dual_c, 8, 1))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif -#if HAVE_AVX2 && (!CONFIG_VP9_HIGHBITDEPTH) +#if HAVE_AVX2 && (!CONFIG_VPX_HIGHBITDEPTH) INSTANTIATE_TEST_CASE_P( AVX2, Loop8Test6Param, ::testing::Values( @@ -606,7 +606,7 @@ #endif #if HAVE_SSE2 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INSTANTIATE_TEST_CASE_P( SSE2, Loop8Test9Param, ::testing::Values( @@ -646,11 +646,11 @@ &vpx_lpf_vertical_4_dual_c, 8), make_tuple(&vpx_lpf_vertical_8_dual_sse2, &vpx_lpf_vertical_8_dual_c, 8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif #if HAVE_NEON -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // No neon high bitdepth functions. #else INSTANTIATE_TEST_CASE_P( @@ -689,10 +689,10 @@ &vpx_lpf_horizontal_4_dual_c, 8), make_tuple(&vpx_lpf_vertical_4_dual_neon, &vpx_lpf_vertical_4_dual_c, 8))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // HAVE_NEON -#if HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH) +#if HAVE_MSA && (!CONFIG_VPX_HIGHBITDEPTH) INSTANTIATE_TEST_CASE_P( MSA, Loop8Test6Param, ::testing::Values( @@ -713,6 +713,6 @@ &vpx_lpf_vertical_4_dual_c, 8), make_tuple(&vpx_lpf_vertical_8_dual_msa, &vpx_lpf_vertical_8_dual_c, 8))); -#endif // HAVE_MSA && (!CONFIG_VP9_HIGHBITDEPTH) +#endif // HAVE_MSA && (!CONFIG_VPX_HIGHBITDEPTH) } // namespace
diff --git a/test/partial_idct_test.cc b/test/partial_idct_test.cc index 4aa7ee5..9763789 100644 --- a/test/partial_idct_test.cc +++ b/test/partial_idct_test.cc
@@ -231,7 +231,7 @@ &vpx_idct4x4_1_add_c, TX_4X4, 1))); -#if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( NEON, PartialIDctTest, ::testing::Values( @@ -259,9 +259,9 @@ &vpx_idct4x4_16_add_c, &vpx_idct4x4_1_add_neon, TX_4X4, 1))); -#endif // HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_NEON && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE -#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_SSE2 && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSE2, PartialIDctTest, ::testing::Values( @@ -296,7 +296,7 @@ #endif #if HAVE_SSSE3 && CONFIG_USE_X86INC && ARCH_X86_64 && \ - !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE + !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( SSSE3_64, PartialIDctTest, ::testing::Values( @@ -306,7 +306,7 @@ TX_8X8, 12))); #endif -#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#if HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE INSTANTIATE_TEST_CASE_P( MSA, PartialIDctTest, ::testing::Values( @@ -338,6 +338,6 @@ &vpx_idct4x4_16_add_c, &vpx_idct4x4_1_add_msa, TX_4X4, 1))); -#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE +#endif // HAVE_MSA && !CONFIG_VPX_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE } // namespace
diff --git a/test/quantize_test.cc b/test/quantize_test.cc index dc3a244..48c6855 100644 --- a/test/quantize_test.cc +++ b/test/quantize_test.cc
@@ -28,7 +28,7 @@ using libvpx_test::ACMRandom; namespace { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int number_of_iterations = 100; typedef void (*QuantizeFunc)(const tran_low_t *coeff, intptr_t count, @@ -100,7 +100,7 @@ const int skip_block = i == 0; const TX_SIZE sz = (TX_SIZE)(i % 3); // TX_4X4, TX_8X8 TX_16X16 const TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); - const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; + const scan_order *scan_order = &vp10_scan_orders[sz][tx_type]; const int count = (4 << sz) * (4 << sz); // 16, 64, 256 int err_count = 0; *eob_ptr = rnd.Rand16(); @@ -159,7 +159,7 @@ const int skip_block = i == 0; const TX_SIZE sz = TX_32X32; const TX_TYPE tx_type = (TX_TYPE)(i % 4); - const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; + const scan_order *scan_order = &vp10_scan_orders[sz][tx_type]; const int count = (4 << sz) * (4 << sz); // 1024 int err_count = 0; *eob_ptr = rnd.Rand16(); @@ -218,7 +218,7 @@ int skip_block = i == 0; TX_SIZE sz = (TX_SIZE)(i % 3); // TX_4X4, TX_8X8 TX_16X16 TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); - const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; + const scan_order *scan_order = &vp10_scan_orders[sz][tx_type]; int count = (4 << sz) * (4 << sz); // 16, 64, 256 int err_count = 0; *eob_ptr = rnd.Rand16(); @@ -282,7 +282,7 @@ int skip_block = i == 0; TX_SIZE sz = TX_32X32; TX_TYPE tx_type = (TX_TYPE)(i % 4); - const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; + const scan_order *scan_order = &vp10_scan_orders[sz][tx_type]; int count = (4 << sz) * (4 << sz); // 1024 int err_count = 0; *eob_ptr = rnd.Rand16(); @@ -347,5 +347,5 @@ make_tuple(&vpx_highbd_quantize_b_32x32_sse2, &vpx_highbd_quantize_b_32x32_c, VPX_BITS_12))); #endif // HAVE_SSE2 -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // namespace
diff --git a/test/sad_test.cc b/test/sad_test.cc index a144cfc..5429a96 100644 --- a/test/sad_test.cc +++ b/test/sad_test.cc
@@ -100,14 +100,14 @@ source_data_ = source_data8_; reference_data_ = reference_data8_; second_pred_ = second_pred8_; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { use_high_bit_depth_ = true; bit_depth_ = static_cast<vpx_bit_depth_t>(bd_); source_data_ = CONVERT_TO_BYTEPTR(source_data16_); reference_data_ = CONVERT_TO_BYTEPTR(reference_data16_); second_pred_ = CONVERT_TO_BYTEPTR(second_pred16_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } mask_ = (1 << bit_depth_) - 1; source_stride_ = (width_ + 31) & ~31; @@ -116,11 +116,11 @@ } virtual uint8_t *GetReference(int block_idx) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (use_high_bit_depth_) return CONVERT_TO_BYTEPTR(CONVERT_TO_SHORTPTR(reference_data_) + block_idx * kDataBlockSize); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH return reference_data_ + block_idx * kDataBlockSize; } @@ -130,21 +130,21 @@ unsigned int sad = 0; const uint8_t *const reference8 = GetReference(block_idx); const uint8_t *const source8 = source_data_; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint16_t *const reference16 = CONVERT_TO_SHORTPTR(GetReference(block_idx)); const uint16_t *const source16 = CONVERT_TO_SHORTPTR(source_data_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int h = 0; h < height_; ++h) { for (int w = 0; w < width_; ++w) { if (!use_high_bit_depth_) { sad += abs(source8[h * source_stride_ + w] - reference8[h * reference_stride_ + w]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { sad += abs(source16[h * source_stride_ + w] - reference16[h * reference_stride_ + w]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -159,12 +159,12 @@ const uint8_t *const reference8 = GetReference(block_idx); const uint8_t *const source8 = source_data_; const uint8_t *const second_pred8 = second_pred_; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint16_t *const reference16 = CONVERT_TO_SHORTPTR(GetReference(block_idx)); const uint16_t *const source16 = CONVERT_TO_SHORTPTR(source_data_); const uint16_t *const second_pred16 = CONVERT_TO_SHORTPTR(second_pred_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int h = 0; h < height_; ++h) { for (int w = 0; w < width_; ++w) { if (!use_high_bit_depth_) { @@ -172,13 +172,13 @@ reference8[h * reference_stride_ + w]; const uint8_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); sad += abs(source8[h * source_stride_ + w] - comp_pred); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { const int tmp = second_pred16[h * width_ + w] + reference16[h * reference_stride_ + w]; const uint16_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); sad += abs(source16[h * source_stride_ + w] - comp_pred); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -187,17 +187,17 @@ void FillConstant(uint8_t *data, int stride, uint16_t fill_constant) { uint8_t *data8 = data; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint16_t *data16 = CONVERT_TO_SHORTPTR(data); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int h = 0; h < height_; ++h) { for (int w = 0; w < width_; ++w) { if (!use_high_bit_depth_) { data8[h * stride + w] = static_cast<uint8_t>(fill_constant); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { data16[h * stride + w] = fill_constant; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -205,17 +205,17 @@ void FillRandom(uint8_t *data, int stride) { uint8_t *data8 = data; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint16_t *data16 = CONVERT_TO_SHORTPTR(data); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (int h = 0; h < height_; ++h) { for (int w = 0; w < width_; ++w) { if (!use_high_bit_depth_) { data8[h * stride + w] = rnd_.Rand8(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { data16[h * stride + w] = rnd_.Rand16() & mask_; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -498,7 +498,7 @@ make_tuple(8, 4, &vpx_sad8x4_c, -1), make_tuple(4, 8, &vpx_sad4x8_c, -1), make_tuple(4, 4, &vpx_sad4x4_c, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64_c, 8), make_tuple(64, 32, &vpx_highbd_sad64x32_c, 8), make_tuple(32, 64, &vpx_highbd_sad32x64_c, 8), @@ -538,7 +538,7 @@ make_tuple(8, 4, &vpx_highbd_sad8x4_c, 12), make_tuple(4, 8, &vpx_highbd_sad4x8_c, 12), make_tuple(4, 4, &vpx_highbd_sad4x4_c, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(C, SADTest, ::testing::ValuesIn(c_tests)); @@ -556,7 +556,7 @@ make_tuple(8, 4, &vpx_sad8x4_avg_c, -1), make_tuple(4, 8, &vpx_sad4x8_avg_c, -1), make_tuple(4, 4, &vpx_sad4x4_avg_c, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64_avg_c, 8), make_tuple(64, 32, &vpx_highbd_sad64x32_avg_c, 8), make_tuple(32, 64, &vpx_highbd_sad32x64_avg_c, 8), @@ -596,7 +596,7 @@ make_tuple(8, 4, &vpx_highbd_sad8x4_avg_c, 12), make_tuple(4, 8, &vpx_highbd_sad4x8_avg_c, 12), make_tuple(4, 4, &vpx_highbd_sad4x4_avg_c, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(C, SADavgTest, ::testing::ValuesIn(avg_c_tests)); @@ -614,7 +614,7 @@ make_tuple(8, 4, &vpx_sad8x4x4d_c, -1), make_tuple(4, 8, &vpx_sad4x8x4d_c, -1), make_tuple(4, 4, &vpx_sad4x4x4d_c, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64x4d_c, 8), make_tuple(64, 32, &vpx_highbd_sad64x32x4d_c, 8), make_tuple(32, 64, &vpx_highbd_sad32x64x4d_c, 8), @@ -654,7 +654,7 @@ make_tuple(8, 4, &vpx_highbd_sad8x4x4d_c, 12), make_tuple(4, 8, &vpx_highbd_sad4x8x4d_c, 12), make_tuple(4, 4, &vpx_highbd_sad4x4x4d_c, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(C, SADx4Test, ::testing::ValuesIn(x4d_c_tests)); @@ -726,7 +726,7 @@ make_tuple(8, 4, &vpx_sad8x4_sse2, -1), make_tuple(4, 8, &vpx_sad4x8_sse2, -1), make_tuple(4, 4, &vpx_sad4x4_sse2, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64_sse2, 8), make_tuple(64, 32, &vpx_highbd_sad64x32_sse2, 8), make_tuple(32, 64, &vpx_highbd_sad32x64_sse2, 8), @@ -760,7 +760,7 @@ make_tuple(8, 16, &vpx_highbd_sad8x16_sse2, 12), make_tuple(8, 8, &vpx_highbd_sad8x8_sse2, 12), make_tuple(8, 4, &vpx_highbd_sad8x4_sse2, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(SSE2, SADTest, ::testing::ValuesIn(sse2_tests)); @@ -778,7 +778,7 @@ make_tuple(8, 4, &vpx_sad8x4_avg_sse2, -1), make_tuple(4, 8, &vpx_sad4x8_avg_sse2, -1), make_tuple(4, 4, &vpx_sad4x4_avg_sse2, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64_avg_sse2, 8), make_tuple(64, 32, &vpx_highbd_sad64x32_avg_sse2, 8), make_tuple(32, 64, &vpx_highbd_sad32x64_avg_sse2, 8), @@ -812,7 +812,7 @@ make_tuple(8, 16, &vpx_highbd_sad8x16_avg_sse2, 12), make_tuple(8, 8, &vpx_highbd_sad8x8_avg_sse2, 12), make_tuple(8, 4, &vpx_highbd_sad8x4_avg_sse2, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(SSE2, SADavgTest, ::testing::ValuesIn(avg_sse2_tests)); @@ -828,7 +828,7 @@ make_tuple(8, 16, &vpx_sad8x16x4d_sse2, -1), make_tuple(8, 8, &vpx_sad8x8x4d_sse2, -1), make_tuple(8, 4, &vpx_sad8x4x4d_sse2, -1), -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH make_tuple(64, 64, &vpx_highbd_sad64x64x4d_sse2, 8), make_tuple(64, 32, &vpx_highbd_sad64x32x4d_sse2, 8), make_tuple(32, 64, &vpx_highbd_sad32x64x4d_sse2, 8), @@ -868,7 +868,7 @@ make_tuple(8, 4, &vpx_highbd_sad8x4x4d_sse2, 12), make_tuple(4, 8, &vpx_highbd_sad4x8x4d_sse2, 12), make_tuple(4, 4, &vpx_highbd_sad4x4x4d_sse2, 12), -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }; INSTANTIATE_TEST_CASE_P(SSE2, SADx4Test, ::testing::ValuesIn(x4d_sse2_tests)); #endif // CONFIG_USE_X86INC
diff --git a/test/test-data.mk b/test/test-data.mk index 1439bfa..4a2146a 100644 --- a/test/test-data.mk +++ b/test/test-data.mk
@@ -708,7 +708,7 @@ LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-20-big_superframe-01.webm.md5 LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-20-big_superframe-02.webm LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-20-big_superframe-02.webm.md5 -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp92-2-20-10bit-yuv420.webm LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp92-2-20-10bit-yuv420.webm.md5 LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp92-2-20-12bit-yuv420.webm @@ -725,7 +725,7 @@ LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp93-2-20-10bit-yuv444.webm.md5 LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp93-2-20-12bit-yuv444.webm LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp93-2-20-12bit-yuv444.webm.md5 -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH # Invalid files for testing libvpx error checking. LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += invalid-vp90-01-v3.webm
diff --git a/test/test.mk b/test/test.mk index 654e754..a2f681a 100644 --- a/test/test.mk +++ b/test/test.mk
@@ -105,7 +105,6 @@ LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += fdct4x4_test.cc LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += fdct8x8_test.cc LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += variance_test.cc -LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += error_block_test.cc LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += quantize_test.cc LIBVPX_TEST_SRCS-$(CONFIG_VP10_ENCODER) += subtract_test.cc
diff --git a/test/test_vectors.cc b/test/test_vectors.cc index 634ea44..afa0353 100644 --- a/test/test_vectors.cc +++ b/test/test_vectors.cc
@@ -230,12 +230,12 @@ "vp90-2-19-skip-01.webm", "vp90-2-19-skip-02.webm", "vp91-2-04-yuv444.webm", "vp91-2-04-yuv422.webm", "vp91-2-04-yuv440.webm", -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH "vp92-2-20-10bit-yuv420.webm", "vp92-2-20-12bit-yuv420.webm", "vp93-2-20-10bit-yuv422.webm", "vp93-2-20-12bit-yuv422.webm", "vp93-2-20-10bit-yuv440.webm", "vp93-2-20-12bit-yuv440.webm", "vp93-2-20-10bit-yuv444.webm", "vp93-2-20-12bit-yuv444.webm", -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH "vp90-2-20-big_superframe-01.webm", "vp90-2-20-big_superframe-02.webm", RESIZE_TEST_VECTORS };
diff --git a/test/variance_test.cc b/test/variance_test.cc index 6f50f78..7e2ce0a 100644 --- a/test/variance_test.cc +++ b/test/variance_test.cc
@@ -91,13 +91,13 @@ src[w * y * src_stride_coeff + x]; se += diff; sse += diff * diff; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { diff = CONVERT_TO_SHORTPTR(ref)[w * y * ref_stride_coeff + x] - CONVERT_TO_SHORTPTR(src)[w * y * src_stride_coeff + x]; se += diff; sse += diff * diff; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -141,7 +141,7 @@ const int diff = r - src[w * y + x]; se += diff; sse += diff * diff; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { uint16_t *ref16 = CONVERT_TO_SHORTPTR(ref); uint16_t *src16 = CONVERT_TO_SHORTPTR(src); @@ -155,7 +155,7 @@ const int diff = r - src16[w * y + x]; se += diff; sse += diff * diff; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -234,12 +234,12 @@ if (!use_high_bit_depth_) { src_ = reinterpret_cast<uint8_t *>(vpx_memalign(16, block_size_ * 2)); ref_ = new uint8_t[block_size_ * 2]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src_ = CONVERT_TO_BYTEPTR(reinterpret_cast<uint16_t *>( vpx_memalign(16, block_size_ * 2 * sizeof(uint16_t)))); ref_ = CONVERT_TO_BYTEPTR(new uint16_t[block_size_ * 2]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } ASSERT_TRUE(src_ != NULL); ASSERT_TRUE(ref_ != NULL); @@ -249,11 +249,11 @@ if (!use_high_bit_depth_) { vpx_free(src_); delete[] ref_; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_free(CONVERT_TO_SHORTPTR(src_)); delete[] CONVERT_TO_SHORTPTR(ref_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } libvpx_test::ClearSystemState(); } @@ -281,20 +281,20 @@ for (int i = 0; i <= 255; ++i) { if (!use_high_bit_depth_) { memset(src_, i, block_size_); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_memset16(CONVERT_TO_SHORTPTR(src_), i << (bit_depth_ - 8), block_size_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } for (int j = 0; j <= 255; ++j) { if (!use_high_bit_depth_) { memset(ref_, j, block_size_); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_memset16(CONVERT_TO_SHORTPTR(ref_), j << (bit_depth_ - 8), block_size_); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } unsigned int sse; unsigned int var; @@ -312,11 +312,11 @@ if (!use_high_bit_depth_) { src_[j] = rnd_.Rand8(); ref_[j] = rnd_.Rand8(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { CONVERT_TO_SHORTPTR(src_)[j] = rnd_.Rand16() && mask_; CONVERT_TO_SHORTPTR(ref_)[j] = rnd_.Rand16() && mask_; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } unsigned int sse1, sse2; @@ -344,11 +344,11 @@ if (!use_high_bit_depth_) { src_[src_ind] = rnd_.Rand8(); ref_[ref_ind] = rnd_.Rand8(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { CONVERT_TO_SHORTPTR(src_)[src_ind] = rnd_.Rand16() && mask_; CONVERT_TO_SHORTPTR(ref_)[ref_ind] = rnd_.Rand16() && mask_; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } unsigned int sse1, sse2; @@ -373,13 +373,13 @@ memset(src_, 255, block_size_); memset(ref_, 255, half); memset(ref_ + half, 0, half); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_memset16(CONVERT_TO_SHORTPTR(src_), 255 << (bit_depth_ - 8), block_size_); vpx_memset16(CONVERT_TO_SHORTPTR(ref_), 255 << (bit_depth_ - 8), half); vpx_memset16(CONVERT_TO_SHORTPTR(ref_) + half, 0, half); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } unsigned int sse; unsigned int var; @@ -512,7 +512,7 @@ const int diff = ((r + second_pred[w * y + x] + 1) >> 1) - src[w * y + x]; se += diff; sse += diff * diff; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { uint16_t *ref16 = CONVERT_TO_SHORTPTR(ref); uint16_t *src16 = CONVERT_TO_SHORTPTR(src); @@ -527,7 +527,7 @@ const int diff = ((r + sec16[w * y + x] + 1) >> 1) - src16[w * y + x]; se += diff; sse += diff * diff; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -566,7 +566,7 @@ src_ = reinterpret_cast<uint8_t *>(vpx_memalign(16, block_size_)); sec_ = reinterpret_cast<uint8_t *>(vpx_memalign(16, block_size_)); ref_ = new uint8_t[block_size_ + width_ + height_ + 1]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { src_ = CONVERT_TO_BYTEPTR( reinterpret_cast<uint16_t *>( @@ -576,7 +576,7 @@ vpx_memalign(16, block_size_*sizeof(uint16_t)))); ref_ = CONVERT_TO_BYTEPTR( new uint16_t[block_size_ + width_ + height_ + 1]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } ASSERT_TRUE(src_ != NULL); ASSERT_TRUE(sec_ != NULL); @@ -588,12 +588,12 @@ vpx_free(src_); delete[] ref_; vpx_free(sec_); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_free(CONVERT_TO_SHORTPTR(src_)); delete[] CONVERT_TO_SHORTPTR(ref_); vpx_free(CONVERT_TO_SHORTPTR(sec_)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } libvpx_test::ClearSystemState(); } @@ -625,7 +625,7 @@ for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) { ref_[j] = rnd_.Rand8(); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { for (int j = 0; j < block_size_; j++) { CONVERT_TO_SHORTPTR(src_)[j] = rnd_.Rand16() & mask_; @@ -633,7 +633,7 @@ for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) { CONVERT_TO_SHORTPTR(ref_)[j] = rnd_.Rand16() & mask_; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } unsigned int sse1, sse2; unsigned int var1; @@ -663,14 +663,14 @@ memset(src_ + half, 255, half); memset(ref_, 255, half); memset(ref_ + half, 0, half + width_ + height_ + 1); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { vpx_memset16(CONVERT_TO_SHORTPTR(src_), mask_, half); vpx_memset16(CONVERT_TO_SHORTPTR(src_) + half, 0, half); vpx_memset16(CONVERT_TO_SHORTPTR(ref_), 0, half); vpx_memset16(CONVERT_TO_SHORTPTR(ref_) + half, mask_, half + width_ + height_ + 1); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } unsigned int sse1, sse2; unsigned int var1; @@ -697,7 +697,7 @@ for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) { ref_[j] = rnd_.Rand8(); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else { for (int j = 0; j < block_size_; j++) { CONVERT_TO_SHORTPTR(src_)[j] = rnd_.Rand16() & mask_; @@ -706,7 +706,7 @@ for (int j = 0; j < block_size_ + width_ + height_ + 1; j++) { CONVERT_TO_SHORTPTR(ref_)[j] = rnd_.Rand16() & mask_; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } unsigned int sse1, sse2; unsigned int var1; @@ -805,7 +805,7 @@ make_tuple(2, 3, &vpx_sub_pixel_avg_variance4x8_c, 0), make_tuple(2, 2, &vpx_sub_pixel_avg_variance4x4_c, 0))); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef MseTest<VarianceMxNFunc> VpxHBDMseTest; typedef VarianceTest<VarianceMxNFunc> VpxHBDVarianceTest; typedef SubpelVarianceTest<SubpixVarMxNFunc> VpxHBDSubpelVarianceTest; @@ -966,7 +966,7 @@ make_tuple(3, 2, &vpx_highbd_12_sub_pixel_avg_variance8x4_c, 12), make_tuple(2, 3, &vpx_highbd_12_sub_pixel_avg_variance4x8_c, 12), make_tuple(2, 2, &vpx_highbd_12_sub_pixel_avg_variance4x4_c, 12))); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #if HAVE_MMX INSTANTIATE_TEST_CASE_P(MMX, VpxMseTest, @@ -1053,7 +1053,7 @@ make_tuple(2, 2, &vpx_sub_pixel_avg_variance4x4_sse, 0))); #endif // CONFIG_USE_X86INC -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH /* TODO(debargha): This test does not support the highbd version INSTANTIATE_TEST_CASE_P( SSE2, VpxHBDMseTest, @@ -1179,7 +1179,7 @@ make_tuple(3, 3, &vpx_highbd_8_sub_pixel_avg_variance8x8_sse2, 8), make_tuple(3, 2, &vpx_highbd_8_sub_pixel_avg_variance8x4_sse2, 8))); #endif // CONFIG_USE_X86INC -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // HAVE_SSE2 #if HAVE_SSSE3
diff --git a/tools_common.c b/tools_common.c index 0aeaafd..d12b854 100644 --- a/tools_common.c +++ b/tools_common.c
@@ -270,7 +270,7 @@ } // TODO(debargha): Consolidate the functions below into a separate file. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) { // Note the offset is 1 less than half. @@ -483,4 +483,4 @@ lowbd_img_downshift(dst, src, down_shift); } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/tools_common.h b/tools_common.h index 98347b6..613f26b 100644 --- a/tools_common.h +++ b/tools_common.h
@@ -151,7 +151,7 @@ double sse_to_psnr(double samples, double peak, double mse); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift); void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift); void vpx_img_truncate_16_to_8(vpx_image_t *dst, vpx_image_t *src);
diff --git a/vp10/common/blockd.h b/vp10/common/blockd.h index fce1767..a4a8f8d 100644 --- a/vp10/common/blockd.h +++ b/vp10/common/blockd.h
@@ -192,7 +192,7 @@ PARTITION_CONTEXT *above_seg_context; PARTITION_CONTEXT left_seg_context[8]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH /* Bit depth: 8, 10, 12 */ int bd; #endif
diff --git a/vp10/common/entropy.c b/vp10/common/entropy.c index 3da08a6..c5930e6 100644 --- a/vp10/common/entropy.c +++ b/vp10/common/entropy.c
@@ -35,7 +35,7 @@ const vpx_prob vp10_cat6_prob[] = { 254, 254, 254, 252, 249, 243, 230, 196, 177, 153, 140, 133, 130, 129 }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const vpx_prob vp10_cat1_prob_high10[] = { 159 }; const vpx_prob vp10_cat2_prob_high10[] = { 165, 145 }; const vpx_prob vp10_cat3_prob_high10[] = { 173, 148, 140 };
diff --git a/vp10/common/entropy.h b/vp10/common/entropy.h index 9a471c8..dd62ed2 100644 --- a/vp10/common/entropy.h +++ b/vp10/common/entropy.h
@@ -59,7 +59,7 @@ DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat5_prob[5]); DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat6_prob[14]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat1_prob_high10[1]); DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat2_prob_high10[2]); DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat3_prob_high10[3]); @@ -72,7 +72,7 @@ DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat4_prob_high12[4]); DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat5_prob_high12[5]); DECLARE_ALIGNED(16, extern const uint8_t, vp10_cat6_prob_high12[18]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #define EOB_MODEL_TOKEN 3 @@ -86,16 +86,16 @@ // indexed by token value extern const vp10_extra_bit vp10_extra_bits[ENTROPY_TOKENS]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH extern const vp10_extra_bit vp10_extra_bits_high10[ENTROPY_TOKENS]; extern const vp10_extra_bit vp10_extra_bits_high12[ENTROPY_TOKENS]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #define DCT_MAX_VALUE 16384 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define DCT_MAX_VALUE_HIGH10 65536 #define DCT_MAX_VALUE_HIGH12 262144 -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH /* Coefficients are predicted via a 3-dimensional probability table. */
diff --git a/vp10/common/idct.c b/vp10/common/idct.c index 5ee15c8..20a120e 100644 --- a/vp10/common/idct.c +++ b/vp10/common/idct.c
@@ -251,7 +251,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int tx_type, int bd) { const highbd_transform_2d IHT_4[] = { @@ -495,4 +495,4 @@ break; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/common/idct.h b/vp10/common/idct.h index 0883398..410fa14 100644 --- a/vp10/common/idct.h +++ b/vp10/common/idct.h
@@ -30,13 +30,13 @@ transform_1d cols, rows; // vertical and horizontal } transform_2d; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef void (*highbd_transform_1d)(const tran_low_t*, tran_low_t*, int bd); typedef struct { highbd_transform_1d cols, rows; // vertical and horizontal } highbd_transform_2d; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob); @@ -52,7 +52,7 @@ void vp10_inv_txfm_add_32x32(const tran_low_t *input, uint8_t *dest, int stride, int eob, TX_TYPE tx_type); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd); void vp10_highbd_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, @@ -74,7 +74,7 @@ void vp10_highbd_inv_txfm_add_32x32(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd, TX_TYPE tx_type); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #ifdef __cplusplus } // extern "C" #endif
diff --git a/vp10/common/loopfilter.c b/vp10/common/loopfilter.c index a1925de..4c1716e 100644 --- a/vp10/common/loopfilter.c +++ b/vp10/common/loopfilter.c
@@ -395,7 +395,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_filter_selectively_vert_row2(int subsampling_factor, uint16_t *s, int pitch, unsigned int mask_16x16_l, @@ -494,7 +494,7 @@ mask_4x4_int_1 >>= 1; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void filter_selectively_horiz(uint8_t *s, int pitch, unsigned int mask_16x16, @@ -592,7 +592,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_filter_selectively_horiz(uint16_t *s, int pitch, unsigned int mask_16x16, unsigned int mask_8x8, @@ -696,7 +696,7 @@ mask_4x4_int >>= count; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // This function ors into the current lfm structure, where to do loop // filters for the specific mi we are looking at. It uses information @@ -1143,7 +1143,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_filter_selectively_vert(uint16_t *s, int pitch, unsigned int mask_16x16, unsigned int mask_8x8, @@ -1180,7 +1180,7 @@ mask_4x4_int >>= 1; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_filter_block_plane_non420(VP10_COMMON *cm, struct macroblockd_plane *plane, @@ -1280,7 +1280,7 @@ // Disable filtering on the leftmost column border_mask = ~(mi_col == 0); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_vert(CONVERT_TO_SHORTPTR(dst->buf), dst->stride, @@ -1305,7 +1305,7 @@ mask_4x4_c & border_mask, mask_4x4_int[r], &cm->lf_info, &lfl[r << 3]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 8 * dst->stride; mi_8x8 += row_step_stride; } @@ -1329,7 +1329,7 @@ mask_8x8_r = mask_8x8[r]; mask_4x4_r = mask_4x4[r]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_horiz(CONVERT_TO_SHORTPTR(dst->buf), dst->stride, @@ -1354,7 +1354,7 @@ mask_4x4_r, mask_4x4_int_r, &cm->lf_info, &lfl[r << 3]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 8 * dst->stride; } } @@ -1381,7 +1381,7 @@ unsigned int mask_4x4_int_l = mask_4x4_int & 0xffff; // Disable filtering on the leftmost column. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_vert_row2( plane->subsampling_x, CONVERT_TO_SHORTPTR(dst->buf), dst->stride, @@ -1396,7 +1396,7 @@ filter_selectively_vert_row2( plane->subsampling_x, dst->buf, dst->stride, mask_16x16_l, mask_8x8_l, mask_4x4_l, mask_4x4_int_l, &cm->lf_info, &lfm->lfl_y[r << 3]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 16 * dst->stride; mask_16x16 >>= 16; mask_8x8 >>= 16; @@ -1426,7 +1426,7 @@ mask_4x4_r = mask_4x4 & 0xff; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_horiz( CONVERT_TO_SHORTPTR(dst->buf), dst->stride, mask_16x16_r, mask_8x8_r, @@ -1441,7 +1441,7 @@ filter_selectively_horiz(dst->buf, dst->stride, mask_16x16_r, mask_8x8_r, mask_4x4_r, mask_4x4_int & 0xff, &cm->lf_info, &lfm->lfl_y[r << 3]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 8 * dst->stride; mask_16x16 >>= 8; @@ -1486,7 +1486,7 @@ unsigned int mask_4x4_int_l = mask_4x4_int & 0xff; // Disable filtering on the leftmost column. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_vert_row2( plane->subsampling_x, CONVERT_TO_SHORTPTR(dst->buf), dst->stride, @@ -1503,7 +1503,7 @@ plane->subsampling_x, dst->buf, dst->stride, mask_16x16_l, mask_8x8_l, mask_4x4_l, mask_4x4_int_l, &cm->lf_info, &lfm->lfl_uv[r << 1]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 16 * dst->stride; mask_16x16 >>= 8; @@ -1542,7 +1542,7 @@ mask_4x4_r = mask_4x4 & 0xf; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { highbd_filter_selectively_horiz(CONVERT_TO_SHORTPTR(dst->buf), dst->stride, mask_16x16_r, mask_8x8_r, @@ -1557,7 +1557,7 @@ filter_selectively_horiz(dst->buf, dst->stride, mask_16x16_r, mask_8x8_r, mask_4x4_r, mask_4x4_int_r, &cm->lf_info, &lfm->lfl_uv[r << 1]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH dst->buf += 8 * dst->stride; mask_16x16 >>= 4;
diff --git a/vp10/common/onyxc_int.h b/vp10/common/onyxc_int.h index ffef733..22e1697 100644 --- a/vp10/common/onyxc_int.h +++ b/vp10/common/onyxc_int.h
@@ -143,7 +143,7 @@ int subsampling_x; int subsampling_y; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth; // Marks if we need to use 16bit frame buffers. #endif
diff --git a/vp10/common/postproc.c b/vp10/common/postproc.c index 23b352d..4a43672 100644 --- a/vp10/common/postproc.c +++ b/vp10/common/postproc.c
@@ -154,7 +154,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_post_proc_down_and_across_c(const uint16_t *src_ptr, uint16_t *dst_ptr, int src_pixels_per_line, @@ -227,7 +227,7 @@ dst_ptr += dst_pixels_per_line; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static int q2mbl(int x) { if (x < 20) x = 20; @@ -271,7 +271,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_mbpost_proc_across_ip_c(uint16_t *src, int pitch, int rows, int cols, int flimit) { int r, c, i; @@ -309,7 +309,7 @@ s += pitch; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_mbpost_proc_down_c(uint8_t *dst, int pitch, int rows, int cols, int flimit) { @@ -343,7 +343,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_mbpost_proc_down_c(uint16_t *dst, int pitch, int rows, int cols, int flimit) { int r, c, i; @@ -375,7 +375,7 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void deblock_and_de_macro_block(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *post, @@ -387,7 +387,7 @@ (void) low_var_thresh; (void) flag; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (source->flags & YV12_FLAG_HIGHBITDEPTH) { vp10_highbd_post_proc_down_and_across(CONVERT_TO_SHORTPTR(source->y_buffer), CONVERT_TO_SHORTPTR(post->y_buffer), @@ -448,7 +448,7 @@ vp10_post_proc_down_and_across(source->v_buffer, post->v_buffer, source->uv_stride, post->uv_stride, source->uv_height, source->uv_width, ppl); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } void vp10_deblock(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, @@ -466,7 +466,7 @@ const int dst_strides[3] = {dst->y_stride, dst->uv_stride, dst->uv_stride}; for (i = 0; i < MAX_MB_PLANE; ++i) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH assert((src->flags & YV12_FLAG_HIGHBITDEPTH) == (dst->flags & YV12_FLAG_HIGHBITDEPTH)); if (src->flags & YV12_FLAG_HIGHBITDEPTH) { @@ -483,7 +483,7 @@ vp10_post_proc_down_and_across(srcs[i], dsts[i], src_strides[i], dst_strides[i], src_heights[i], src_widths[i], ppl); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } @@ -507,7 +507,7 @@ const int src_height = src_heights[i] - 4; const int dst_stride = dst_strides[i]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH assert((src->flags & YV12_FLAG_HIGHBITDEPTH) == (dst->flags & YV12_FLAG_HIGHBITDEPTH)); if (src->flags & YV12_FLAG_HIGHBITDEPTH) { @@ -662,9 +662,9 @@ if (vpx_alloc_frame_buffer(&cm->post_proc_buffer_int, width, height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment) < 0) { vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR, @@ -680,7 +680,7 @@ if (vpx_realloc_frame_buffer(&cm->post_proc_buffer, cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_DEC_BORDER_IN_PIXELS, cm->byte_alignment,
diff --git a/vp10/common/quant_common.c b/vp10/common/quant_common.c index edf7394..968a816 100644 --- a/vp10/common/quant_common.c +++ b/vp10/common/quant_common.c
@@ -47,7 +47,7 @@ 1022, 1058, 1098, 1139, 1184, 1232, 1282, 1336, }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const int16_t dc_qlookup_10[QINDEX_RANGE] = { 4, 9, 10, 13, 15, 17, 20, 22, 25, 28, 31, 34, 37, 40, 43, 47, @@ -154,7 +154,7 @@ 1597, 1628, 1660, 1692, 1725, 1759, 1793, 1828, }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const int16_t ac_qlookup_10[QINDEX_RANGE] = { 4, 9, 11, 13, 16, 18, 21, 24, 27, 30, 33, 37, 40, 44, 48, 51, @@ -227,7 +227,7 @@ #endif int16_t vp10_dc_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: return dc_qlookup[clamp(qindex + delta, 0, MAXQ)]; @@ -246,7 +246,7 @@ } int16_t vp10_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: return ac_qlookup[clamp(qindex + delta, 0, MAXQ)];
diff --git a/vp10/common/reconinter.c b/vp10/common/reconinter.c index fdcb967..ddfb8fa 100644 --- a/vp10/common/reconinter.c +++ b/vp10/common/reconinter.c
@@ -19,7 +19,7 @@ #include "vp10/common/reconinter.h" #include "vp10/common/reconintra.h" -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_build_inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, const MV *src_mv, @@ -40,7 +40,7 @@ high_inter_predictor(src, src_stride, dst, dst_stride, subpel_x, subpel_y, sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_build_inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, @@ -112,7 +112,7 @@ pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride + (scaled_mv.col >> SUBPEL_BITS); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { high_inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride, subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys, @@ -124,7 +124,7 @@ #else inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride, subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } @@ -145,7 +145,7 @@ for (ref = 0; ref < 1 + is_compound; ++ref) { const uint8_t *pre = &pd->pre[ref].buf[(ir * pd->pre[ref].stride + ic) << 2]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { vp10_highbd_build_inter_predictor(pre, pd->pre[ref].stride, dst, pd->dst.stride, @@ -171,7 +171,7 @@ kernel, MV_PRECISION_Q3, mi_col * MI_SIZE + 4 * ic, mi_row * MI_SIZE + 4 * ir); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } }
diff --git a/vp10/common/reconinter.h b/vp10/common/reconinter.h index 09d0cef..451ea08 100644 --- a/vp10/common/reconinter.h +++ b/vp10/common/reconinter.h
@@ -33,7 +33,7 @@ kernel[subpel_x], xs, kernel[subpel_y], ys, w, h); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE void high_inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, const int subpel_x, @@ -46,7 +46,7 @@ src, src_stride, dst, dst_stride, kernel[subpel_x], xs, kernel[subpel_y], ys, w, h, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static INLINE int round_mv_comp_q4(int value) { return (value < 0 ? value - 2 : value + 2) / 4; @@ -156,7 +156,7 @@ enum mv_precision precision, int x, int y); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_build_inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, const MV *mv_q3,
diff --git a/vp10/common/reconintra.c b/vp10/common/reconintra.c index e9e3949..0d53794 100644 --- a/vp10/common/reconintra.c +++ b/vp10/common/reconintra.c
@@ -11,9 +11,9 @@ #include "./vpx_config.h" #include "./vpx_dsp_rtcd.h" -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #include "vpx_dsp/vpx_dsp_common.h" -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #include "vpx_mem/vpx_mem.h" #include "vpx_ports/mem.h" #include "vpx_ports/vpx_once.h" @@ -196,13 +196,13 @@ static intra_pred_fn pred[INTRA_MODES][TX_SIZES]; static intra_pred_fn dc_pred[2][2][TX_SIZES]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef void (*intra_high_pred_fn)(uint16_t *dst, ptrdiff_t stride, const uint16_t *above, const uint16_t *left, int bd); static intra_high_pred_fn pred_high[INTRA_MODES][4]; static intra_high_pred_fn dc_pred_high[2][2][4]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void vp10_init_intra_predictors_internal(void) { #define INIT_NO_4X4(p, type) \ @@ -235,7 +235,7 @@ INIT_ALL_SIZES(dc_pred[1][0], dc_left); INIT_ALL_SIZES(dc_pred[1][1], dc); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH INIT_ALL_SIZES(pred_high[V_PRED], highbd_v); INIT_ALL_SIZES(pred_high[H_PRED], highbd_h); #if CONFIG_MISC_FIXES @@ -256,7 +256,7 @@ INIT_ALL_SIZES(dc_pred_high[0][1], highbd_dc_top); INIT_ALL_SIZES(dc_pred_high[1][0], highbd_dc_left); INIT_ALL_SIZES(dc_pred_high[1][1], highbd_dc); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #undef intra_pred_allsizes } @@ -268,7 +268,7 @@ } #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void build_intra_predictors_high(const MACROBLOCKD *xd, const uint8_t *ref8, int ref_stride, @@ -501,7 +501,7 @@ xd->bd); } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, @@ -754,7 +754,7 @@ #endif // CONFIG_MISC_FIXES #if CONFIG_MISC_FIXES -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { build_intra_predictors_high(xd, ref, ref_stride, dst, dst_stride, mode, tx_size, @@ -775,7 +775,7 @@ x, y, plane); #else // CONFIG_MISC_FIXES (void) bhl_in; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { build_intra_predictors_high(xd, ref, ref_stride, dst, dst_stride, mode, tx_size, have_top, have_left, have_right,
diff --git a/vp10/common/scale.c b/vp10/common/scale.c index ce6062c..c4287bf 100644 --- a/vp10/common/scale.c +++ b/vp10/common/scale.c
@@ -44,7 +44,7 @@ return res; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w, int other_h, int this_w, int this_h, @@ -119,7 +119,7 @@ // 2D subpel motion always gets filtered in both directions sf->predict[1][1][0] = vpx_convolve8; sf->predict[1][1][1] = vpx_convolve8_avg; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (use_highbd) { if (sf->x_step_q4 == 16) { if (sf->y_step_q4 == 16) {
diff --git a/vp10/common/scale.h b/vp10/common/scale.h index 833f6c4..709b5ad 100644 --- a/vp10/common/scale.h +++ b/vp10/common/scale.h
@@ -32,14 +32,14 @@ int (*scale_value_y)(int val, const struct scale_factors *sf); convolve_fn_t predict[2][2][2]; // horiz, vert, avg -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH highbd_convolve_fn_t highbd_predict[2][2][2]; // horiz, vert, avg #endif }; MV32 vp10_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_setup_scale_factors_for_frame(struct scale_factors *sf, int other_w, int other_h, int this_w, int this_h,
diff --git a/vp10/common/vp10_fwd_txfm.c b/vp10/common/vp10_fwd_txfm.c index 3211cd0..805f559 100644 --- a/vp10/common/vp10_fwd_txfm.c +++ b/vp10/common/vp10_fwd_txfm.c
@@ -781,7 +781,7 @@ output[1] = 0; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { vp10_fdct4x4_c(input, output, stride); @@ -821,4 +821,4 @@ tran_low_t *out, int stride) { vp10_fdct32x32_1_c(input, out, stride); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/common/vp10_inv_txfm.c b/vp10/common/vp10_inv_txfm.c index 403b209..cdfa3c1 100644 --- a/vp10/common/vp10_inv_txfm.c +++ b/vp10/common/vp10_inv_txfm.c
@@ -1245,7 +1245,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) { /* 4-point reversible, orthonormal inverse Walsh-Hadamard in 3.5 adds, @@ -2496,4 +2496,4 @@ dest += stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/common/vp10_inv_txfm.h b/vp10/common/vp10_inv_txfm.h index 52611ac..e5b5889 100644 --- a/vp10/common/vp10_inv_txfm.h +++ b/vp10/common/vp10_inv_txfm.h
@@ -40,7 +40,7 @@ return check_range(rv); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE tran_low_t highbd_check_range(tran_high_t input, int bd) { #if CONFIG_COEFFICIENT_RANGE_CHECKING @@ -64,7 +64,7 @@ tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS); return highbd_check_range(rv, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #if CONFIG_EMULATE_HARDWARE // When CONFIG_EMULATE_HARDWARE is 1 the transform performs a @@ -96,7 +96,7 @@ void vp10_iadst8_c(const tran_low_t *input, tran_low_t *output); void vp10_iadst16_c(const tran_low_t *input, tran_low_t *output); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_idct4_c(const tran_low_t *input, tran_low_t *output, int bd); void vp10_highbd_idct8_c(const tran_low_t *input, tran_low_t *output, int bd); void vp10_highbd_idct16_c(const tran_low_t *input, tran_low_t *output, int bd);
diff --git a/vp10/common/vp10_rtcd_defs.pl b/vp10/common/vp10_rtcd_defs.pl index c331b6a..bfb380d 100644 --- a/vp10/common/vp10_rtcd_defs.pl +++ b/vp10/common/vp10_rtcd_defs.pl
@@ -84,7 +84,7 @@ # # dct # -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # Note as optimized versions of these functions are added we need to add a check to ensure # that when CONFIG_EMULATE_HARDWARE is on, it defaults to the C versions only. if (vpx_config("CONFIG_EMULATE_HARDWARE") eq "yes") { @@ -286,7 +286,7 @@ } # High bitdepth functions -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # # Sub Pixel Filters # @@ -361,7 +361,7 @@ specialize qw/vp10_denoiser_filter sse2/; } -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # the transform coefficients are held in 32-bit # values, so the assembler code for vp10_block_error can no longer be used. add_proto qw/int64_t vp10_block_error/, "const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz"; @@ -394,7 +394,7 @@ # fdct functions -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/void vp10_fht4x4/, "const int16_t *input, tran_low_t *output, int stride, int tx_type"; specialize qw/vp10_fht4x4 sse2/; @@ -421,7 +421,7 @@ } # Inverse transform -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # Note as optimized versions of these functions are added we need to add a check to ensure # that when CONFIG_EMULATE_HARDWARE is on, it defaults to the C versions only. add_proto qw/void vp10_idct4x4_1_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride"; @@ -600,7 +600,7 @@ add_proto qw/void vp10_iwht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride"; specialize qw/vp10_iwht4x4_16_add/; } # CONFIG_EMULATE_HARDWARE -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH # # Motion search @@ -619,7 +619,7 @@ add_proto qw/void vp10_temporal_filter_apply/, "uint8_t *frame1, unsigned int stride, uint8_t *frame2, unsigned int block_width, unsigned int block_height, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count"; specialize qw/vp10_temporal_filter_apply sse2 msa/; -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # ENCODEMB INVOKE
diff --git a/vp10/common/x86/vp10_fwd_txfm_sse2.c b/vp10/common/x86/vp10_fwd_txfm_sse2.c index 032c3cc..cf6aa8d 100644 --- a/vp10/common/x86/vp10_fwd_txfm_sse2.c +++ b/vp10/common/x86/vp10_fwd_txfm_sse2.c
@@ -246,7 +246,7 @@ #undef FDCT32x32_HIGH_PRECISION #undef DCT_HIGH_BIT_DEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define DCT_HIGH_BIT_DEPTH 1 #define FDCT4x4_2D vp10_highbd_fdct4x4_sse2 #define FDCT8x8_2D vp10_highbd_fdct8x8_sse2 @@ -268,4 +268,4 @@ #undef FDCT32x32_2D #undef FDCT32x32_HIGH_PRECISION #undef DCT_HIGH_BIT_DEPTH -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/common/x86/vp10_inv_txfm_sse2.c b/vp10/common/x86/vp10_inv_txfm_sse2.c index b25e22e..6c108a8 100644 --- a/vp10/common/x86/vp10_inv_txfm_sse2.c +++ b/vp10/common/x86/vp10_inv_txfm_sse2.c
@@ -3488,7 +3488,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE __m128i clamp_high_sse2(__m128i value, int bd) { __m128i ubounded, retval; const __m128i zero = _mm_set1_epi16(0); @@ -4055,4 +4055,4 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/decoder/decodeframe.c b/vp10/decoder/decodeframe.c index 6f4efd4..d2e662f 100644 --- a/vp10/decoder/decodeframe.c +++ b/vp10/decoder/decodeframe.c
@@ -218,7 +218,7 @@ const int seg_id = xd->mi[0]->mbmi.segment_id; if (eob > 0) { tran_low_t *const dqcoeff = pd->dqcoeff; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_4X4: @@ -242,7 +242,7 @@ return; } } else { -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_4X4: vp10_inv_txfm_add_4x4(dqcoeff, dst, stride, eob, tx_type, @@ -261,9 +261,9 @@ assert(0 && "Invalid transform size"); return; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (eob == 1) { dqcoeff[0] = 0; @@ -287,7 +287,7 @@ const int seg_id = xd->mi[0]->mbmi.segment_id; if (eob > 0) { tran_low_t *const dqcoeff = pd->dqcoeff; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_4X4: @@ -311,7 +311,7 @@ return; } } else { -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_4X4: vp10_inv_txfm_add_4x4(dqcoeff, dst, stride, eob, tx_type, @@ -330,9 +330,9 @@ assert(0 && "Invalid transform size"); return; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (eob == 1) { dqcoeff[0] = 0; @@ -438,7 +438,7 @@ } while (--b_h); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void high_build_mc_border(const uint8_t *src8, int src_stride, uint16_t *dst, int dst_stride, int x, int y, int b_w, int b_h, @@ -483,9 +483,9 @@ ref_row += src_stride; } while (--b_h); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void extend_and_predict(const uint8_t *buf_ptr1, int pre_buf_stride, int x0, int y0, int b_w, int b_h, int frame_width, int frame_height, @@ -537,7 +537,7 @@ inter_predictor(buf_ptr, b_w, dst, dst_buf_stride, subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void dec_build_inter_predictors(VP10Decoder *const pbi, MACROBLOCKD *xd, int plane, int bw, int bh, int x, @@ -663,7 +663,7 @@ dst, dst_buf->stride, subpel_x, subpel_y, kernel, sf, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH xd, #endif w, h, ref, xs, ys); @@ -678,7 +678,7 @@ VPXMAX(0, (y1 + 7)) << (plane == 0 ? 0 : 1)); } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { high_inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys, xd->bd); @@ -689,7 +689,7 @@ #else inter_predictor(buf_ptr, buf_stride, dst, dst_buf->stride, subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } static void dec_build_inter_predictors_sb(VP10Decoder *const pbi, @@ -1242,7 +1242,7 @@ if (vpx_realloc_frame_buffer( get_frame_new_buffer(cm), cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_DEC_BORDER_IN_PIXELS, @@ -1336,7 +1336,7 @@ if (vpx_realloc_frame_buffer( get_frame_new_buffer(cm), cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_DEC_BORDER_IN_PIXELS, @@ -1816,12 +1816,12 @@ VP10_COMMON *cm, struct vpx_read_bit_buffer *rb) { if (cm->profile >= PROFILE_2) { cm->bit_depth = vpx_rb_read_bit(rb) ? VPX_BITS_12 : VPX_BITS_10; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth = 1; #endif } else { cm->bit_depth = VPX_BITS_8; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth = 0; #endif } @@ -1873,7 +1873,7 @@ "Invalid frame marker"); cm->profile = vp10_read_profile(rb); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->profile >= MAX_PROFILES) vpx_internal_error(&cm->error, VPX_CODEC_UNSUP_BITSTREAM, "Unsupported bitstream profile"); @@ -1979,7 +1979,7 @@ cm->color_range = 0; cm->subsampling_y = cm->subsampling_x = 1; cm->bit_depth = VPX_BITS_8; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth = 0; #endif } @@ -2009,7 +2009,7 @@ for (i = 0; i < REFS_PER_FRAME; ++i) { RefBuffer *const ref_buf = &cm->frame_refs[i]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vp10_setup_scale_factors_for_frame(&ref_buf->sf, ref_buf->buf->y_crop_width, ref_buf->buf->y_crop_height, @@ -2024,7 +2024,7 @@ } } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH get_frame_new_buffer(cm)->bit_depth = cm->bit_depth; #endif get_frame_new_buffer(cm)->color_space = cm->color_space; @@ -2088,7 +2088,7 @@ setup_loopfilter(&cm->lf, rb); setup_quantization(cm, rb); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH xd->bd = (int)cm->bit_depth; #endif
diff --git a/vp10/decoder/detokenize.c b/vp10/decoder/detokenize.c index d39e3dc..04bc0b8 100644 --- a/vp10/decoder/detokenize.c +++ b/vp10/decoder/detokenize.c
@@ -77,7 +77,7 @@ eob_branch_count = counts->eob_branch[tx_size][type][ref]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->bd > VPX_BITS_8) { if (xd->bd == VPX_BITS_10) { cat1_prob = vp10_cat1_prob_high10; @@ -170,7 +170,7 @@ const int skip_bits = 0; #endif const uint8_t *cat6p = cat6_prob + skip_bits; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (xd->bd) { case VPX_BITS_8: val = CAT6_MIN_VAL + read_coeff(cat6p, 14 - skip_bits, r); @@ -194,12 +194,12 @@ } v = (val * dqv) >> dq_shift; #if CONFIG_COEFFICIENT_RANGE_CHECKING -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH dqcoeff[scan[c]] = highbd_check_range((vpx_read_bit(r) ? -v : v), xd->bd); #else dqcoeff[scan[c]] = check_range(vpx_read_bit(r) ? -v : v); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #else dqcoeff[scan[c]] = vpx_read_bit(r) ? -v : v; #endif // CONFIG_COEFFICIENT_RANGE_CHECKING
diff --git a/vp10/decoder/dthread.c b/vp10/decoder/dthread.c index 4206adc..ac3cd2b 100644 --- a/vp10/decoder/dthread.c +++ b/vp10/decoder/dthread.c
@@ -156,7 +156,7 @@ vp10_frameworker_unlock_stats(src_worker); dst_cm->bit_depth = src_cm->bit_depth; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH dst_cm->use_highbitdepth = src_cm->use_highbitdepth; #endif dst_cm->prev_frame = src_cm->show_existing_frame ?
diff --git a/vp10/encoder/aq_variance.c b/vp10/encoder/aq_variance.c index bed5162..15ab6b4 100644 --- a/vp10/encoder/aq_variance.c +++ b/vp10/encoder/aq_variance.c
@@ -33,7 +33,7 @@ #define SEGMENT_ID(i) segment_id[(i) - ENERGY_MIN] DECLARE_ALIGNED(16, static const uint8_t, vp10_64_zeros[64]) = {0}; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, static const uint16_t, vp10_highbd_64_zeros[64]) = {0}; #endif @@ -104,7 +104,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void aq_highbd_variance64(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int w, int h, uint64_t *sse, uint64_t *sum) { @@ -135,7 +135,7 @@ *sse = (unsigned int)sse_long; *sum = (int)sum_long; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static unsigned int block_variance(VP10_COMP *cpi, MACROBLOCK *x, BLOCK_SIZE bs) { @@ -150,7 +150,7 @@ const int bw = 8 * num_8x8_blocks_wide_lookup[bs] - right_overflow; const int bh = 8 * num_8x8_blocks_high_lookup[bs] - bottom_overflow; int avg; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { aq_highbd_8_variance(x->plane[0].src.buf, x->plane[0].src.stride, CONVERT_TO_BYTEPTR(vp10_highbd_64_zeros), 0, bw, bh, @@ -164,11 +164,11 @@ #else aq_variance(x->plane[0].src.buf, x->plane[0].src.stride, vp10_64_zeros, 0, bw, bh, &sse, &avg); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH var = sse - (((int64_t)avg * avg) / (bw * bh)); return (256 * var) / (bw * bh); } else { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf, x->plane[0].src.stride, @@ -183,7 +183,7 @@ var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf, x->plane[0].src.stride, vp10_64_zeros, 0, &sse); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH return (256 * var) >> num_pels_log2_lookup[bs]; } }
diff --git a/vp10/encoder/bitstream.c b/vp10/encoder/bitstream.c index 16b0e0b..6db69a1 100644 --- a/vp10/encoder/bitstream.c +++ b/vp10/encoder/bitstream.c
@@ -214,7 +214,7 @@ int i = 0; int v = a->value; int n = a->len; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const vp10_extra_bit *b; if (bit_depth == VPX_BITS_12) b = &vp10_extra_bits_high12[t]; @@ -225,7 +225,7 @@ #else const vp10_extra_bit *const b = &vp10_extra_bits[t]; (void) bit_depth; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH /* skip one or two nodes */ if (p->skip_eob_node) {
diff --git a/vp10/encoder/dct.c b/vp10/encoder/dct.c index 132a141..701871b 100644 --- a/vp10/encoder/dct.c +++ b/vp10/encoder/dct.c
@@ -1280,7 +1280,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) { vp10_fht4x4_c(input, output, stride, tx_type); @@ -1300,4 +1300,4 @@ int stride, int tx_type) { vp10_fht16x16_c(input, output, stride, tx_type); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/encoder/denoiser.c b/vp10/encoder/denoiser.c index e5d8157..3142daf 100644 --- a/vp10/encoder/denoiser.c +++ b/vp10/encoder/denoiser.c
@@ -427,7 +427,7 @@ int vp10_denoiser_alloc(VP9_DENOISER *denoiser, int width, int height, int ssx, int ssy, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border) { @@ -438,7 +438,7 @@ for (i = 0; i < MAX_REF_FRAMES; ++i) { fail = vpx_alloc_frame_buffer(&denoiser->running_avg_y[i], width, height, ssx, ssy, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, #endif border, legacy_byte_alignment); @@ -453,7 +453,7 @@ fail = vpx_alloc_frame_buffer(&denoiser->mc_running_avg_y, width, height, ssx, ssy, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, #endif border, legacy_byte_alignment);
diff --git a/vp10/encoder/denoiser.h b/vp10/encoder/denoiser.h index e543fb0..5e1a0b4 100644 --- a/vp10/encoder/denoiser.h +++ b/vp10/encoder/denoiser.h
@@ -51,7 +51,7 @@ int vp10_denoiser_alloc(VP9_DENOISER *denoiser, int width, int height, int ssx, int ssy, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border);
diff --git a/vp10/encoder/encodeframe.c b/vp10/encoder/encodeframe.c index b0a6424..564dd76 100644 --- a/vp10/encoder/encodeframe.c +++ b/vp10/encoder/encodeframe.c
@@ -66,7 +66,7 @@ 128, 128, 128, 128, 128, 128, 128, 128 }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const uint16_t VP9_HIGH_VAR_OFFS_8[64] = { 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, @@ -99,7 +99,7 @@ 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16, 128*16 }; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH unsigned int vp10_get_sby_perpixel_variance(VP10_COMP *cpi, const struct buf_2d *ref, @@ -110,7 +110,7 @@ return ROUND_POWER_OF_TWO(var, num_pels_log2_lookup[bs]); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH unsigned int vp10_high_get_sby_perpixel_variance( VP10_COMP *cpi, const struct buf_2d *ref, BLOCK_SIZE bs, int bd) { unsigned int var, sse; @@ -134,7 +134,7 @@ } return ROUND_POWER_OF_TWO(var, num_pels_log2_lookup[bs]); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static unsigned int get_sby_perpixel_diff_variance(VP10_COMP *cpi, const struct buf_2d *ref, @@ -519,7 +519,7 @@ // Compute the minmax over the 8x8 subblocks. static int compute_minmax_8x8(const uint8_t *s, int sp, const uint8_t *d, int dp, int x16_idx, int y16_idx, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int highbd_flag, #endif int pixels_wide, @@ -534,7 +534,7 @@ int min = 0; int max = 0; if (x8_idx < pixels_wide && y8_idx < pixels_high) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (highbd_flag & YV12_FLAG_HIGHBITDEPTH) { vpx_highbd_minmax_8x8(s + y8_idx * sp + x8_idx, sp, d + y8_idx * dp + x8_idx, dp, @@ -560,7 +560,7 @@ static void fill_variance_4x4avg(const uint8_t *s, int sp, const uint8_t *d, int dp, int x8_idx, int y8_idx, v8x8 *vst, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int highbd_flag, #endif int pixels_wide, @@ -575,7 +575,7 @@ if (x4_idx < pixels_wide && y4_idx < pixels_high) { int s_avg; int d_avg = 128; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (highbd_flag & YV12_FLAG_HIGHBITDEPTH) { s_avg = vpx_highbd_avg_4x4(s + y4_idx * sp + x4_idx, sp); if (!is_key_frame) @@ -599,7 +599,7 @@ static void fill_variance_8x8avg(const uint8_t *s, int sp, const uint8_t *d, int dp, int x16_idx, int y16_idx, v16x16 *vst, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int highbd_flag, #endif int pixels_wide, @@ -614,7 +614,7 @@ if (x8_idx < pixels_wide && y8_idx < pixels_high) { int s_avg; int d_avg = 128; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (highbd_flag & YV12_FLAG_HIGHBITDEPTH) { s_avg = vpx_highbd_avg_8x8(s + y8_idx * sp + x8_idx, sp); if (!is_key_frame) @@ -761,7 +761,7 @@ } else { d = VP9_VAR_OFFS; dp = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (xd->bd) { case 10: @@ -776,7 +776,7 @@ break; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // Index for force_split: 0 for 64x64, 1-4 for 32x32 blocks, @@ -798,7 +798,7 @@ variance4x4downsample[i2 + j] = 0; if (!is_key_frame) { fill_variance_8x8avg(s, sp, d, dp, x16_idx, y16_idx, vst, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH xd->cur_buf->flags, #endif pixels_wide, @@ -820,7 +820,7 @@ // compute the minmax over the 8x8 sub-blocks, and if above threshold, // force split to 8x8 block for this 16x16 block. int minmax = compute_minmax_8x8(s, sp, d, dp, x16_idx, y16_idx, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH xd->cur_buf->flags, #endif pixels_wide, pixels_high); @@ -843,7 +843,7 @@ v8x8 *vst2 = is_key_frame ? &vst->split[k] : &vt2[i2 + j].split[k]; fill_variance_4x4avg(s, sp, d, dp, x8_idx, y8_idx, vst2, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH xd->cur_buf->flags, #endif pixels_wide, @@ -1151,7 +1151,7 @@ // Set to zero to make sure we do not use the previous encoded frame stats mbmi->skip = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { x->source_variance = vp10_high_get_sby_perpixel_variance(cpi, &x->plane[0].src, @@ -1163,7 +1163,7 @@ #else x->source_variance = vp10_get_sby_perpixel_variance(cpi, &x->plane[0].src, bsize); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Save rdmult before it might be changed, so it can be restored later. orig_rdmult = x->rdmult;
diff --git a/vp10/encoder/encodemb.c b/vp10/encoder/encodemb.c index 92ba4dd..0a23d35 100644 --- a/vp10/encoder/encodemb.c +++ b/vp10/encoder/encodemb.c
@@ -38,14 +38,14 @@ const int bw = 4 * num_4x4_blocks_wide_lookup[plane_bsize]; const int bh = 4 * num_4x4_blocks_high_lookup[plane_bsize]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (x->e_mbd.cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { vpx_highbd_subtract_block(bh, bw, p->src_diff, bw, p->src.buf, p->src.stride, pd->dst.buf, pd->dst.stride, x->e_mbd.bd); return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH vpx_subtract_block(bh, bw, p->src_diff, bw, p->src.buf, p->src.stride, pd->dst.buf, pd->dst.stride); } @@ -115,7 +115,7 @@ int16_t t0, t1; EXTRABIT e0; int best, band, pt, i, final_eob; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int16_t *cat6_high_cost = vp10_get_high_cost_table(xd->bd); #else const int16_t *cat6_high_cost = vp10_get_high_cost_table(8); @@ -167,11 +167,11 @@ best = rd_cost1 < rd_cost0; base_bits = vp10_get_cost(t0, e0, cat6_high_cost); dx = mul * (dqcoeff[rc] - coeff[rc]); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { dx >>= xd->bd - 8; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH d2 = dx * dx; tokens[i][0].rate = base_bits + (best ? rate1 : rate0); tokens[i][0].error = d2 + (best ? error1 : error0); @@ -228,7 +228,7 @@ base_bits = vp10_get_cost(t0, e0, cat6_high_cost); if (shortcut) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { dx -= ((dequant_ptr[rc != 0] >> (xd->bd - 8)) + sz) ^ sz; } else { @@ -236,7 +236,7 @@ } #else dx -= (dequant_ptr[rc != 0] + sz) ^ sz; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH d2 = dx * dx; } tokens[i][1].rate = base_bits + (best ? rate1 : rate0); @@ -313,7 +313,7 @@ vpx_fdct32x32(src, dst, src_stride); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE void highbd_fdct32x32(int rd_transform, const int16_t *src, tran_low_t *dst, int src_stride) { if (rd_transform) @@ -321,7 +321,7 @@ else vpx_highbd_fdct32x32(src, dst, src_stride); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_fwd_txfm_4x4(const int16_t *src_diff, tran_low_t *coeff, int diff_stride, TX_TYPE tx_type, int lossless) { @@ -392,7 +392,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_fwd_txfm_4x4(const int16_t *src_diff, tran_low_t *coeff, int diff_stride, TX_TYPE tx_type, int lossless) { if (lossless) { @@ -466,7 +466,7 @@ break; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_xform_quant_fp(MACROBLOCK *x, int plane, int block, int blk_row, int blk_col, @@ -485,7 +485,7 @@ const int16_t *src_diff; src_diff = &p->src_diff[4 * (blk_row * diff_stride + blk_col)]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_32X32: @@ -526,7 +526,7 @@ } return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_32X32: @@ -581,7 +581,7 @@ const int16_t *src_diff; src_diff = &p->src_diff[4 * (blk_row * diff_stride + blk_col)]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_32X32: @@ -617,7 +617,7 @@ } return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_32X32: @@ -673,7 +673,7 @@ const int16_t *src_diff; src_diff = &p->src_diff[4 * (blk_row * diff_stride + blk_col)]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_32X32: @@ -711,7 +711,7 @@ } return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_32X32: @@ -822,7 +822,7 @@ if (p->eobs[block] == 0) return; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_32X32: @@ -852,7 +852,7 @@ return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_32X32: @@ -894,7 +894,7 @@ vp10_xform_quant(x, plane, block, blk_row, blk_col, plane_bsize, tx_size); if (p->eobs[block] > 0) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { if (xd->lossless[0]) { vp10_highbd_iwht4x4_add(dqcoeff, dst, pd->dst.stride, @@ -905,7 +905,7 @@ } return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (xd->lossless[0]) { vp10_iwht4x4_add(dqcoeff, dst, pd->dst.stride, p->eobs[block]); } else { @@ -980,7 +980,7 @@ vp10_predict_intra_block(xd, bwl, bhl, tx_size, mode, dst, dst_stride, dst, dst_stride, blk_col, blk_row, plane); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { switch (tx_size) { case TX_32X32: @@ -1053,7 +1053,7 @@ *(args->skip) = 0; return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH switch (tx_size) { case TX_32X32:
diff --git a/vp10/encoder/encodemb.h b/vp10/encoder/encodemb.h index 2e6516e..b3e6f63 100644 --- a/vp10/encoder/encodemb.h +++ b/vp10/encoder/encodemb.h
@@ -46,10 +46,10 @@ void vp10_fwd_txfm_4x4(const int16_t *src_diff, tran_low_t *coeff, int diff_stride, TX_TYPE tx_type, int lossless); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_fwd_txfm_4x4(const int16_t *src_diff, tran_low_t *coeff, int diff_stride, TX_TYPE tx_type, int lossless); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #ifdef __cplusplus } // extern "C"
diff --git a/vp10/encoder/encoder.c b/vp10/encoder/encoder.c index b8f5e52..9931a0e 100644 --- a/vp10/encoder/encoder.c +++ b/vp10/encoder/encoder.c
@@ -605,7 +605,7 @@ if (!cpi->lookahead) cpi->lookahead = vp10_lookahead_init(oxcf->width, oxcf->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif oxcf->lag_in_frames); @@ -617,7 +617,7 @@ if (vpx_realloc_frame_buffer(&cpi->alt_ref_buffer, oxcf->width, oxcf->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment, @@ -631,7 +631,7 @@ if (vpx_realloc_frame_buffer(&cpi->last_frame_uf, cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment, @@ -642,7 +642,7 @@ if (vpx_realloc_frame_buffer(&cpi->scaled_source, cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment, @@ -653,7 +653,7 @@ if (vpx_realloc_frame_buffer(&cpi->scaled_last_source, cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment, @@ -735,7 +735,7 @@ cm->profile = oxcf->profile; cm->bit_depth = oxcf->bit_depth; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth = oxcf->use_highbitdepth; #endif cm->color_space = oxcf->color_space; @@ -771,7 +771,7 @@ : maximum * bandwidth / 1000; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define HIGHBD_BFP(BT, SDF, SDAF, VF, SVF, SVAF, SDX3F, SDX8F, SDX4DF) \ cpi->fn_ptr[BT].sdf = SDF; \ cpi->fn_ptr[BT].sdaf = SDAF; \ @@ -1375,7 +1375,7 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void realloc_segmentation_maps(VP10_COMP *cpi) { VP10_COMMON *const cm = &cpi->common; @@ -1419,9 +1419,9 @@ assert(cm->bit_depth > VPX_BITS_8); cpi->oxcf = *oxcf; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cpi->td.mb.e_mbd.bd = (int)cm->bit_depth; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if ((oxcf->pass == 0) && (oxcf->rc_mode == VPX_Q)) { rc->baseline_gf_interval = FIXED_GF_INTERVAL; @@ -1498,7 +1498,7 @@ cpi->ext_refresh_frame_flags_pending = 0; cpi->ext_refresh_frame_context_pending = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH highbd_set_var_fns(cpi); #endif } @@ -1810,7 +1810,7 @@ vpx_sub_pixel_avg_variance4x4, vpx_sad4x4x3, vpx_sad4x4x8, vpx_sad4x4x4d) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH highbd_set_var_fns(cpi); #endif @@ -2023,7 +2023,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void encoder_highbd_variance64(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int w, int h, uint64_t *sse, @@ -2057,7 +2057,7 @@ *sse = (unsigned int)sse_long; *sum = (int)sum_long; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static int64_t get_sse(const uint8_t *a, int a_stride, const uint8_t *b, int b_stride, @@ -2100,7 +2100,7 @@ return total_sse; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static int64_t highbd_get_sse_shift(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int width, int height, @@ -2156,7 +2156,7 @@ } return total_sse; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH typedef struct { double psnr[4]; // total/y/u/v @@ -2164,7 +2164,7 @@ uint32_t samples[4]; // total/y/u/v } PSNR_STATS; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void calc_highbd_psnr(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b, PSNR_STATS *psnr, @@ -2217,7 +2217,7 @@ (double)total_sse); } -#else // !CONFIG_VP9_HIGHBITDEPTH +#else // !CONFIG_VPX_HIGHBITDEPTH static void calc_psnr(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b, PSNR_STATS *psnr) { @@ -2254,13 +2254,13 @@ psnr->psnr[0] = vpx_sse_to_psnr((double)total_samples, peak, (double)total_sse); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static void generate_psnr_packet(VP10_COMP *cpi) { struct vpx_codec_cx_pkt pkt; int i; PSNR_STATS psnr; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH calc_highbd_psnr(cpi->Source, cpi->common.frame_to_show, &psnr, cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth); #else @@ -2370,7 +2370,7 @@ uint8_t *src = s->y_buffer; int h = cm->height; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (s->flags & YV12_FLAG_HIGHBITDEPTH) { uint16_t *src16 = CONVERT_TO_SHORTPTR(s->y_buffer); @@ -2398,7 +2398,7 @@ fflush(yuv_rec_file); return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH do { fwrite(src, s->y_width, 1, yuv_rec_file); @@ -2425,14 +2425,14 @@ } #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void scale_and_extend_frame_nonnormative(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, int bd) { #else static void scale_and_extend_frame_nonnormative(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst) { -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // TODO(dkovalev): replace YV12_BUFFER_CONFIG with vpx_image_t int i; const uint8_t *const srcs[3] = {src->y_buffer, src->u_buffer, src->v_buffer}; @@ -2449,7 +2449,7 @@ dst->uv_crop_height}; for (i = 0; i < MAX_MB_PLANE; ++i) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src->flags & YV12_FLAG_HIGHBITDEPTH) { vp10_highbd_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i], dsts[i], dst_heights[i], @@ -2461,18 +2461,18 @@ #else vp10_resize_plane(srcs[i], src_heights[i], src_widths[i], src_strides[i], dsts[i], dst_heights[i], dst_widths[i], dst_strides[i]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } vpx_extend_frame_borders(dst); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void scale_and_extend_frame(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, int bd) { #else static void scale_and_extend_frame(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst) { -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH const int src_w = src->y_crop_width; const int src_h = src->y_crop_height; const int dst_w = dst->y_crop_width; @@ -2496,7 +2496,7 @@ src_stride + (x / factor) * src_w / dst_w; uint8_t *dst_ptr = dsts[i] + (y / factor) * dst_stride + (x / factor); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src->flags & YV12_FLAG_HIGHBITDEPTH) { vpx_highbd_convolve8(src_ptr, src_stride, dst_ptr, dst_stride, kernel[x_q4 & 0xf], 16 * src_w / dst_w, @@ -2513,7 +2513,7 @@ kernel[x_q4 & 0xf], 16 * src_w / dst_w, kernel[y_q4 & 0xf], 16 * src_h / dst_h, 16 / factor, 16 / factor); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } } @@ -2714,7 +2714,7 @@ continue; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (ref->y_crop_width != cm->width || ref->y_crop_height != cm->height) { RefCntBuffer *new_fb_ptr = NULL; int force_scaling = 0; @@ -2763,7 +2763,7 @@ cpi->scaled_ref_idx[ref_frame - 1] = new_fb; alloc_frame_mvs(cm, new_fb); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } else { const int buf_idx = get_ref_frame_buf_idx(cpi, ref_frame); RefCntBuffer *const buf = &pool->frame_bufs[buf_idx]; @@ -3050,7 +3050,7 @@ vpx_realloc_frame_buffer(get_frame_new_buffer(cm), cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, cm->byte_alignment, @@ -3068,7 +3068,7 @@ if (buf_idx != INVALID_IDX) { YV12_BUFFER_CONFIG *const buf = &cm->buffer_pool->frame_bufs[buf_idx].buf; ref_buf->buf = buf; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vp10_setup_scale_factors_for_frame(&ref_buf->sf, buf->y_crop_width, buf->y_crop_height, cm->width, cm->height, @@ -3078,7 +3078,7 @@ vp10_setup_scale_factors_for_frame(&ref_buf->sf, buf->y_crop_width, buf->y_crop_height, cm->width, cm->height); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (vp10_is_scaled(&ref_buf->sf)) vpx_extend_frame_borders(buf); } else { @@ -3269,7 +3269,7 @@ int64_t high_err_target = cpi->ambient_err; int64_t low_err_target = cpi->ambient_err >> 1; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { kf_err = vp10_highbd_get_y_sse(cpi->Source, get_frame_new_buffer(cm)); } else { @@ -3277,7 +3277,7 @@ } #else kf_err = vp10_get_y_sse(cpi->Source, get_frame_new_buffer(cm)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Prevent possible divide by zero error below for perfect KF kf_err += !kf_err; @@ -3479,11 +3479,11 @@ YV12_BUFFER_CONFIG *scaled) { if (cm->mi_cols * MI_SIZE != unscaled->y_width || cm->mi_rows * MI_SIZE != unscaled->y_height) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH scale_and_extend_frame_nonnormative(unscaled, scaled, (int)cm->bit_depth); #else scale_and_extend_frame_nonnormative(unscaled, scaled); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH return scaled; } else { return unscaled; @@ -3624,7 +3624,7 @@ // fixed interval. Note the reconstruction error if it is the frame before // the force key frame if (cpi->rc.next_key_frame_forced && cpi->rc.frames_to_key == 1) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { cpi->ambient_err = vp10_highbd_get_y_sse(cpi->Source, get_frame_new_buffer(cm)); @@ -3633,7 +3633,7 @@ } #else cpi->ambient_err = vp10_get_y_sse(cpi->Source, get_frame_new_buffer(cm)); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } // If the encoder forced a KEY_FRAME decision @@ -3760,21 +3760,21 @@ } static void check_initial_width(VP10_COMP *cpi, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int subsampling_x, int subsampling_y) { VP10_COMMON *const cm = &cpi->common; if (!cpi->initial_width || -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth != use_highbitdepth || #endif cm->subsampling_x != subsampling_x || cm->subsampling_y != subsampling_y) { cm->subsampling_x = subsampling_x; cm->subsampling_y = subsampling_y; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth = use_highbitdepth; #endif @@ -3797,7 +3797,7 @@ !cpi->denoiser.frame_buffer_initialized) { vp10_denoiser_alloc(&(cpi->denoiser), cm->width, cm->height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS); @@ -3813,12 +3813,12 @@ int res = 0; const int subsampling_x = sd->subsampling_x; const int subsampling_y = sd->subsampling_y; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int use_highbitdepth = sd->flags & YV12_FLAG_HIGHBITDEPTH; check_initial_width(cpi, use_highbitdepth, subsampling_x, subsampling_y); #else check_initial_width(cpi, subsampling_x, subsampling_y); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #if CONFIG_VP9_TEMPORAL_DENOISING setup_denoiser_buffer(cpi); @@ -3826,9 +3826,9 @@ vpx_usec_timer_start(&timer); if (vp10_lookahead_push(cpi->lookahead, sd, time_stamp, end_time, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH frame_flags)) res = -1; vpx_usec_timer_mark(&timer); @@ -4153,12 +4153,12 @@ YV12_BUFFER_CONFIG *recon = cpi->common.frame_to_show; YV12_BUFFER_CONFIG *pp = &cm->post_proc_buffer; PSNR_STATS psnr; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH calc_highbd_psnr(orig, recon, &psnr, cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth); #else calc_psnr(orig, recon, &psnr); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH adjust_image_stat(psnr.psnr[1], psnr.psnr[2], psnr.psnr[3], psnr.psnr[0], &cpi->psnr); @@ -4173,7 +4173,7 @@ if (vpx_alloc_frame_buffer(&cm->post_proc_buffer, recon->y_crop_width, recon->y_crop_height, cm->subsampling_x, cm->subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH cm->use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, @@ -4187,19 +4187,19 @@ #endif vpx_clear_system_state(); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH calc_highbd_psnr(orig, pp, &psnr2, cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth); #else calc_psnr(orig, pp, &psnr2); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH cpi->totalp_sq_error += psnr2.sse[0]; cpi->totalp_samples += psnr2.samples[0]; adjust_image_stat(psnr2.psnr[1], psnr2.psnr[2], psnr2.psnr[3], psnr2.psnr[0], &cpi->psnrp); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { frame_ssim2 = vpx_highbd_calc_ssim(orig, recon, &weight, (int)cm->bit_depth); @@ -4208,13 +4208,13 @@ } #else frame_ssim2 = vpx_calc_ssim(orig, recon, &weight); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH cpi->worst_ssim= VPXMIN(cpi->worst_ssim, frame_ssim2); cpi->summed_quality += frame_ssim2 * weight; cpi->summed_weights += weight; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { frame_ssim2 = vpx_highbd_calc_ssim( orig, &cm->post_proc_buffer, &weight, (int)cm->bit_depth); @@ -4223,7 +4223,7 @@ } #else frame_ssim2 = vpx_calc_ssim(orig, &cm->post_proc_buffer, &weight); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH cpi->summedp_quality += frame_ssim2 * weight; cpi->summedp_weights += weight; @@ -4239,7 +4239,7 @@ } } if (cpi->b_calculate_blockiness) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (!cm->use_highbitdepth) #endif { @@ -4254,7 +4254,7 @@ } if (cpi->b_calculate_consistency) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (!cm->use_highbitdepth) #endif { @@ -4276,7 +4276,7 @@ if (cpi->b_calculate_ssimg) { double y, u, v, frame_all; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { frame_all = vpx_highbd_calc_ssimg(cpi->Source, cm->frame_to_show, &y, &u, &v, (int)cm->bit_depth); @@ -4286,10 +4286,10 @@ } #else frame_all = vpx_calc_ssimg(cpi->Source, cm->frame_to_show, &y, &u, &v); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH adjust_image_stat(y, u, v, frame_all, &cpi->ssimg); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (!cm->use_highbitdepth) #endif { @@ -4299,7 +4299,7 @@ adjust_image_stat(y, u, v, frame_all, &cpi->fastssim); /* TODO(JBB): add 10/12 bit support */ } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (!cm->use_highbitdepth) #endif { @@ -4370,11 +4370,11 @@ int vp10_set_size_literal(VP10_COMP *cpi, unsigned int width, unsigned int height) { VP10_COMMON *cm = &cpi->common; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH check_initial_width(cpi, cm->use_highbitdepth, 1, 1); #else check_initial_width(cpi, 1, 1); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #if CONFIG_VP9_TEMPORAL_DENOISING setup_denoiser_buffer(cpi); @@ -4412,7 +4412,7 @@ a->y_crop_width, a->y_crop_height); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int64_t vp10_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b) { assert(a->y_crop_width == b->y_crop_width); @@ -4423,7 +4423,7 @@ return highbd_get_sse(a->y_buffer, a->y_stride, b->y_buffer, b->y_stride, a->y_crop_width, a->y_crop_height); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int vp10_get_quantizer(VP10_COMP *cpi) { return cpi->common.base_qindex;
diff --git a/vp10/encoder/encoder.h b/vp10/encoder/encoder.h index 5b79223..9c074dd 100644 --- a/vp10/encoder/encoder.h +++ b/vp10/encoder/encoder.h
@@ -226,7 +226,7 @@ vp8e_tuning tuning; vp9e_tune_content content; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth; #endif vpx_color_space_t color_space; @@ -592,10 +592,10 @@ } int64_t vp10_get_y_sse(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int64_t vp10_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_alloc_compressor_data(VP10_COMP *cpi);
diff --git a/vp10/encoder/extend.c b/vp10/encoder/extend.c index 4c8ce3b..b6d32c6 100644 --- a/vp10/encoder/extend.c +++ b/vp10/encoder/extend.c
@@ -57,7 +57,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_copy_and_extend_plane(const uint8_t *src8, int src_pitch, uint8_t *dst8, int dst_pitch, int w, int h, @@ -101,7 +101,7 @@ dst_ptr2 += dst_pitch; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst) { @@ -125,7 +125,7 @@ const int eb_uv = eb_y >> uv_height_subsampling; const int er_uv = er_y >> uv_width_subsampling; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src->flags & YV12_FLAG_HIGHBITDEPTH) { highbd_copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer, dst->y_stride, @@ -143,7 +143,7 @@ et_uv, el_uv, eb_uv, er_uv); return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer, dst->y_stride,
diff --git a/vp10/encoder/firstpass.c b/vp10/encoder/firstpass.c index e7de6d3..450c939 100644 --- a/vp10/encoder/firstpass.c +++ b/vp10/encoder/firstpass.c
@@ -315,7 +315,7 @@ return sse; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static vpx_variance_fn_t highbd_get_block_variance_fn(BLOCK_SIZE bsize, int bd) { switch (bd) { @@ -367,7 +367,7 @@ fn(src->buf, src->stride, ref->buf, ref->stride, &sse); return sse; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Refine the motion search range according to the frame dimension // for first pass test. @@ -399,11 +399,11 @@ // Override the default variance function to use MSE. v_fn_ptr.vf = get_block_variance_fn(bsize); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { v_fn_ptr.vf = highbd_get_block_variance_fn(bsize, xd->bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Center the initial step/diamond search on best mv. tmp_err = cpi->diamond_search_sad(x, &cpi->ss_cfg, &ref_mv_full, &tmp_mv, @@ -632,7 +632,7 @@ image_data_start_row = mb_row; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { switch (cm->bit_depth) { case VPX_BITS_8: @@ -649,7 +649,7 @@ return; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH vpx_clear_system_state(); log_intra = log(this_error + 1.0); @@ -658,7 +658,7 @@ else intra_factor += 1.0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) level_sample = CONVERT_TO_SHORTPTR(x->plane[0].src.buf)[0]; else @@ -703,7 +703,7 @@ struct buf_2d unscaled_last_source_buf_2d; xd->plane[0].pre[0].buf = first_ref_buf->y_buffer + recon_yoffset; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { motion_error = highbd_get_prediction_error( bsize, &x->plane[0].src, &xd->plane[0].pre[0], xd->bd); @@ -714,7 +714,7 @@ #else motion_error = get_prediction_error( bsize, &x->plane[0].src, &xd->plane[0].pre[0]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Compute the motion error of the 0,0 motion using the last source // frame as the reference. Skip the further motion search on @@ -723,7 +723,7 @@ cpi->unscaled_last_source->y_buffer + recon_yoffset; unscaled_last_source_buf_2d.stride = cpi->unscaled_last_source->y_stride; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { raw_motion_error = highbd_get_prediction_error( bsize, &x->plane[0].src, &unscaled_last_source_buf_2d, xd->bd); @@ -734,7 +734,7 @@ #else raw_motion_error = get_prediction_error( bsize, &x->plane[0].src, &unscaled_last_source_buf_2d); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // TODO(pengchong): Replace the hard-coded threshold if (raw_motion_error > 25) { @@ -760,7 +760,7 @@ int gf_motion_error; xd->plane[0].pre[0].buf = gld_yv12->y_buffer + recon_yoffset; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { gf_motion_error = highbd_get_prediction_error( bsize, &x->plane[0].src, &xd->plane[0].pre[0], xd->bd); @@ -771,7 +771,7 @@ #else gf_motion_error = get_prediction_error( bsize, &x->plane[0].src, &xd->plane[0].pre[0]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH first_pass_motion_search(cpi, x, &zero_mv, &tmp_mv, &gf_motion_error);
diff --git a/vp10/encoder/lookahead.c b/vp10/encoder/lookahead.c index f8f7f43..6289fbc 100644 --- a/vp10/encoder/lookahead.c +++ b/vp10/encoder/lookahead.c
@@ -50,7 +50,7 @@ unsigned int height, unsigned int subsampling_x, unsigned int subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif unsigned int depth) { @@ -74,7 +74,7 @@ for (i = 0; i < depth; i++) if (vpx_alloc_frame_buffer(&ctx->buf[i].img, width, height, subsampling_x, subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS, @@ -91,7 +91,7 @@ int vp10_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, int64_t ts_start, int64_t ts_end, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif unsigned int flags) { @@ -174,7 +174,7 @@ memset(&new_img, 0, sizeof(new_img)); if (vpx_alloc_frame_buffer(&new_img, width, height, subsampling_x, subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, #endif VPX_ENC_BORDER_IN_PIXELS,
diff --git a/vp10/encoder/lookahead.h b/vp10/encoder/lookahead.h index 22429ae..fb28c32 100644 --- a/vp10/encoder/lookahead.h +++ b/vp10/encoder/lookahead.h
@@ -47,7 +47,7 @@ unsigned int height, unsigned int subsampling_x, unsigned int subsampling_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif unsigned int depth); @@ -75,7 +75,7 @@ */ int vp10_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src, int64_t ts_start, int64_t ts_end, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif unsigned int flags);
diff --git a/vp10/encoder/mcomp.c b/vp10/encoder/mcomp.c index 89f4101..8d5b662 100644 --- a/vp10/encoder/mcomp.c +++ b/vp10/encoder/mcomp.c
@@ -323,7 +323,7 @@ unsigned int *sse1, int *distortion) { unsigned int besterr; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (second_pred != NULL) { if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { DECLARE_ALIGNED(16, uint16_t, comp_pred16[64 * 64]); @@ -352,7 +352,7 @@ } *distortion = besterr; besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH return besterr; } @@ -1860,7 +1860,7 @@ vp10_setup_pre_planes(xd, 0, scaled_ref_frame, mi_row, mi_col, NULL); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH { unsigned int this_sad; tmp_mv->row = 0;
diff --git a/vp10/encoder/picklpf.c b/vp10/encoder/picklpf.c index 045e03d..b8e692e 100644 --- a/vp10/encoder/picklpf.c +++ b/vp10/encoder/picklpf.c
@@ -49,7 +49,7 @@ vp10_loop_filter_frame(cm->frame_to_show, cm, &cpi->td.mb.e_mbd, filt_level, 1, partial_frame); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (cm->use_highbitdepth) { filt_err = vp10_highbd_get_y_sse(sd, cm->frame_to_show); } else { @@ -57,7 +57,7 @@ } #else filt_err = vp10_get_y_sse(sd, cm->frame_to_show); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Re-instate the unfiltered frame vpx_yv12_copy_y(&cpi->last_frame_uf, cm->frame_to_show); @@ -163,7 +163,7 @@ const int q = vp10_ac_quant(cm->base_qindex, 0, cm->bit_depth); // These values were determined by linear fitting the result of the // searched level, filt_guess = q * 0.316206 + 3.87252 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int filt_guess; switch (cm->bit_depth) { case VPX_BITS_8: @@ -182,7 +182,7 @@ } #else int filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 1015158, 18); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (cm->frame_type == KEY_FRAME) filt_guess -= 4; lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
diff --git a/vp10/encoder/quantize.c b/vp10/encoder/quantize.c index 86b324f..66a8e5f 100644 --- a/vp10/encoder/quantize.c +++ b/vp10/encoder/quantize.c
@@ -60,7 +60,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t count, int skip_block, @@ -147,7 +147,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, @@ -197,7 +197,7 @@ struct macroblock_plane *p = &x->plane[plane]; struct macroblockd_plane *pd = &xd->plane[plane]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { vpx_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block), 16, x->skip_block, @@ -230,7 +230,7 @@ static int get_qzbin_factor(int q, vpx_bit_depth_t bit_depth) { const int quant = vp10_dc_quant(q, 0, bit_depth); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: return q == 0 ? 64 : (quant < 148 ? 84 : 80);
diff --git a/vp10/encoder/ratectrl.c b/vp10/encoder/ratectrl.c index 6068775..1666b2e 100644 --- a/vp10/encoder/ratectrl.c +++ b/vp10/encoder/ratectrl.c
@@ -45,7 +45,7 @@ #define FRAME_OVERHEAD_BITS 200 -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define ASSIGN_MINQ_TABLE(bit_depth, name) \ do { \ switch (bit_depth) { \ @@ -80,7 +80,7 @@ static int inter_minq_8[QINDEX_RANGE]; static int rtc_minq_8[QINDEX_RANGE]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static int kf_low_motion_minq_10[QINDEX_RANGE]; static int kf_high_motion_minq_10[QINDEX_RANGE]; static int arfgf_low_motion_minq_10[QINDEX_RANGE]; @@ -141,7 +141,7 @@ init_minq_luts(kf_low_motion_minq_8, kf_high_motion_minq_8, arfgf_low_motion_minq_8, arfgf_high_motion_minq_8, inter_minq_8, rtc_minq_8, VPX_BITS_8); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH init_minq_luts(kf_low_motion_minq_10, kf_high_motion_minq_10, arfgf_low_motion_minq_10, arfgf_high_motion_minq_10, inter_minq_10, rtc_minq_10, VPX_BITS_10); @@ -156,7 +156,7 @@ // tables if and when things settle down in the experimental bitstream double vp10_convert_qindex_to_q(int qindex, vpx_bit_depth_t bit_depth) { // Convert the index to a real Q value (scaled down to match old Q values) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: return vp10_ac_quant(qindex, 0, bit_depth) / 4.0;
diff --git a/vp10/encoder/rd.c b/vp10/encoder/rd.c index f4fdb24..acc58e2 100644 --- a/vp10/encoder/rd.c +++ b/vp10/encoder/rd.c
@@ -121,7 +121,7 @@ static int sad_per_bit16lut_8[QINDEX_RANGE]; static int sad_per_bit4lut_8[QINDEX_RANGE]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static int sad_per_bit16lut_10[QINDEX_RANGE]; static int sad_per_bit4lut_10[QINDEX_RANGE]; static int sad_per_bit16lut_12[QINDEX_RANGE]; @@ -144,7 +144,7 @@ void vp10_init_me_luts(void) { init_me_luts_bd(sad_per_bit16lut_8, sad_per_bit4lut_8, QINDEX_RANGE, VPX_BITS_8); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH init_me_luts_bd(sad_per_bit16lut_10, sad_per_bit4lut_10, QINDEX_RANGE, VPX_BITS_10); init_me_luts_bd(sad_per_bit16lut_12, sad_per_bit4lut_12, QINDEX_RANGE, @@ -162,7 +162,7 @@ int vp10_compute_rd_mult(const VP10_COMP *cpi, int qindex) { const int64_t q = vp10_dc_quant(qindex, 0, cpi->common.bit_depth); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int64_t rdmult = 0; switch (cpi->common.bit_depth) { case VPX_BITS_8: @@ -180,7 +180,7 @@ } #else int64_t rdmult = 88 * q * q / 24; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (cpi->oxcf.pass == 2 && (cpi->common.frame_type != KEY_FRAME)) { const GF_GROUP *const gf_group = &cpi->twopass.gf_group; const FRAME_UPDATE_TYPE frame_type = gf_group->update_type[gf_group->index]; @@ -196,7 +196,7 @@ static int compute_rd_thresh_factor(int qindex, vpx_bit_depth_t bit_depth) { double q; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: q = vp10_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; @@ -214,13 +214,13 @@ #else (void) bit_depth; q = vp10_dc_quant(qindex, 0, VPX_BITS_8) / 4.0; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // TODO(debargha): Adjust the function below. return VPXMAX((int)(pow(q, RD_THRESH_POW) * 5.12), 8); } void vp10_initialize_me_consts(VP10_COMP *cpi, MACROBLOCK *x, int qindex) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (cpi->common.bit_depth) { case VPX_BITS_8: x->sadperbit16 = sad_per_bit16lut_8[qindex]; @@ -241,7 +241,7 @@ (void)cpi; x->sadperbit16 = sad_per_bit16lut_8[qindex]; x->sadperbit4 = sad_per_bit4lut_8[qindex]; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } static void set_block_thresholds(const VP10_COMMON *cm, RD_OPT *rd) { @@ -654,7 +654,7 @@ int vp10_get_intra_cost_penalty(int qindex, int qdelta, vpx_bit_depth_t bit_depth) { const int q = vp10_dc_quant(qindex, qdelta, bit_depth); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH switch (bit_depth) { case VPX_BITS_8: return 20 * q; @@ -668,6 +668,6 @@ } #else return 20 * q; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }
diff --git a/vp10/encoder/rdopt.c b/vp10/encoder/rdopt.c index 093d32d..3841ea4 100644 --- a/vp10/encoder/rdopt.c +++ b/vp10/encoder/rdopt.c
@@ -187,10 +187,10 @@ int rate; int64_t dist; const int dequant_shift = -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) ? xd->bd - 5 : -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH 3; x->pred_sse[ref] = 0; @@ -309,7 +309,7 @@ return error; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int64_t vp10_highbd_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, @@ -331,7 +331,7 @@ *ssz = sqcoeff; return error; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH /* The trailing '0' is a terminator which is used inside cost_coeffs() to * decide whether to include cost of a trailing EOB node or not (i.e. we @@ -363,7 +363,7 @@ uint8_t token_cache[32 * 32]; int pt = combine_entropy_contexts(*A, *L); int c, cost; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int16_t *cat6_high_cost = vp10_get_high_cost_table(xd->bd); #else const int16_t *cat6_high_cost = vp10_get_high_cost_table(8); @@ -441,14 +441,14 @@ int shift = tx_size == TX_32X32 ? 0 : 2; tran_low_t *const coeff = BLOCK_OFFSET(p->coeff, block); tran_low_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int bd = (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) ? xd->bd : 8; *out_dist = vp10_highbd_block_error(coeff, dqcoeff, 16 << ss_txfrm_size, &this_sse, bd) >> shift; #else *out_dist = vp10_block_error(coeff, dqcoeff, 16 << ss_txfrm_size, &this_sse) >> shift; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH *out_sse = this_sse >> shift; } @@ -500,7 +500,7 @@ const int64_t orig_sse = (int64_t)coeff[0] * coeff[0]; const int64_t resd_sse = coeff[0] - dqcoeff[0]; int64_t dc_correct = orig_sse - resd_sse * resd_sse; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH dc_correct >>= ((xd->bd - 8) * 2); #endif if (tx_size != TX_32X32) @@ -857,7 +857,7 @@ const int num_4x4_blocks_high = num_4x4_blocks_high_lookup[bsize]; int idx, idy; uint8_t best_dst[8 * 8]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH uint16_t best_dst16[8 * 8]; #endif @@ -865,7 +865,7 @@ memcpy(tl, l, sizeof(tl)); xd->mi[0]->mbmi.tx_size = TX_4X4; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { for (mode = DC_PRED; mode <= TM_PRED; ++mode) { int64_t this_rd; @@ -966,7 +966,7 @@ return best_rd; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (mode = DC_PRED; mode <= TM_PRED; ++mode) { int64_t this_rd; @@ -1407,7 +1407,7 @@ vp10_build_inter_predictor_sub8x8(xd, 0, i, ir, ic, mi_row, mi_col); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { fwd_txm4x4 = xd->lossless[mi->mbmi.segment_id] ? vp10_highbd_fwht4x4 : vpx_highbd_fdct4x4; @@ -1416,9 +1416,9 @@ } #else fwd_txm4x4 = xd->lossless[mi->mbmi.segment_id] ? vp10_fwht4x4 : vpx_fdct4x4; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { vpx_highbd_subtract_block( height, width, vp10_raster_block_offset_int16(BLOCK_8X8, i, p->src_diff), @@ -1432,7 +1432,7 @@ vpx_subtract_block(height, width, vp10_raster_block_offset_int16(BLOCK_8X8, i, p->src_diff), 8, src, p->src.stride, dst, pd->dst.stride); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH k = i; for (idy = 0; idy < height / 4; ++idy) { @@ -1445,7 +1445,7 @@ fwd_txm4x4(vp10_raster_block_offset_int16(BLOCK_8X8, k, p->src_diff), coeff, 8); vp10_regular_quantize_b_4x4(x, 0, k, so->scan, so->iscan); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { thisdistortion += vp10_highbd_block_error(coeff, BLOCK_OFFSET(pd->dqcoeff, k), @@ -1457,7 +1457,7 @@ #else thisdistortion += vp10_block_error(coeff, BLOCK_OFFSET(pd->dqcoeff, k), 16, &ssz); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH thissse += ssz; thisrate += cost_coeffs(x, 0, k, ta + (k & 1), tl + (k >> 1), TX_4X4, so->scan, so->neighbors, @@ -1602,12 +1602,12 @@ }; // Prediction buffer from second frame. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, second_pred_alloc_16[64 * 64]); uint8_t *second_pred; #else DECLARE_ALIGNED(16, uint8_t, second_pred[64 * 64]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH for (ref = 0; ref < 2; ++ref) { ref_mv[ref] = x->mbmi_ext->ref_mvs[refs[ref]][0]; @@ -1628,14 +1628,14 @@ // Since we have scaled the reference frames to match the size of the current // frame we must use a unit scaling factor during mode selection. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vp10_setup_scale_factors_for_frame(&sf, cm->width, cm->height, cm->width, cm->height, cm->use_highbitdepth); #else vp10_setup_scale_factors_for_frame(&sf, cm->width, cm->height, cm->width, cm->height); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Allow joint search multiple times iteratively for each reference frame // and break out of the search loop if it couldn't find a better mv. @@ -1659,7 +1659,7 @@ ref_yv12[1] = xd->plane[0].pre[1]; // Get the prediction block from the 'other' reference frame. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { second_pred = CONVERT_TO_BYTEPTR(second_pred_alloc_16); vp10_highbd_build_inter_predictor(ref_yv12[!id].buf, @@ -1688,7 +1688,7 @@ &sf, pw, ph, 0, kernel, MV_PRECISION_Q3, mi_col * MI_SIZE, mi_row * MI_SIZE); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // Do compound motion search on the current reference frame. if (id) @@ -2443,12 +2443,12 @@ int refs[2] = { mbmi->ref_frame[0], (mbmi->ref_frame[1] < 0 ? 0 : mbmi->ref_frame[1]) }; int_mv cur_mv[2]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, tmp_buf16[MAX_MB_PLANE * 64 * 64]); uint8_t *tmp_buf; #else DECLARE_ALIGNED(16, uint8_t, tmp_buf[MAX_MB_PLANE * 64 * 64]); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH int pred_exists = 0; int intpel_mv; int64_t rd, tmp_rd, best_rd = INT64_MAX; @@ -2469,13 +2469,13 @@ int64_t skip_sse_sb = INT64_MAX; int64_t distortion_y = 0, distortion_uv = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { tmp_buf = CONVERT_TO_BYTEPTR(tmp_buf16); } else { tmp_buf = (uint8_t *)tmp_buf16; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (pred_filter_search) { INTERP_FILTER af = SWITCHABLE, lf = SWITCHABLE; @@ -2866,7 +2866,7 @@ if (*this_rd == INT64_MAX) return; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { recon_variance = vp10_high_get_sby_perpixel_variance(cpi, &xd->plane[0].dst, bsize, xd->bd); @@ -2877,7 +2877,7 @@ #else recon_variance = vp10_get_sby_perpixel_variance(cpi, &xd->plane[0].dst, bsize); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if ((source_variance + recon_variance) > LOW_VAR_THRESH) { absvar_diff = (source_variance > recon_variance) @@ -3427,11 +3427,11 @@ int qstep = xd->plane[0].dequant[1]; // TODO(debargha): Enhance this by specializing for each mode_index int scale = 4; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { qstep >>= (xd->bd - 8); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (x->source_variance < UINT_MAX) { const int var_adjust = (x->source_variance < 16); scale -= var_adjust; @@ -4167,11 +4167,11 @@ int qstep = xd->plane[0].dequant[1]; // TODO(debargha): Enhance this by specializing for each mode_index int scale = 4; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { qstep >>= (xd->bd - 8); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH if (x->source_variance < UINT_MAX) { const int var_adjust = (x->source_variance < 16); scale -= var_adjust;
diff --git a/vp10/encoder/rdopt.h b/vp10/encoder/rdopt.h index b1a8036..6526d2b 100644 --- a/vp10/encoder/rdopt.h +++ b/vp10/encoder/rdopt.h
@@ -32,7 +32,7 @@ unsigned int vp10_get_sby_perpixel_variance(VP10_COMP *cpi, const struct buf_2d *ref, BLOCK_SIZE bs); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH unsigned int vp10_high_get_sby_perpixel_variance(VP10_COMP *cpi, const struct buf_2d *ref, BLOCK_SIZE bs, int bd);
diff --git a/vp10/encoder/resize.c b/vp10/encoder/resize.c index 5572c17..862ab02 100644 --- a/vp10/encoder/resize.c +++ b/vp10/encoder/resize.c
@@ -15,9 +15,9 @@ #include <stdlib.h> #include <string.h> -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #include "vpx_dsp/vpx_dsp_common.h" -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #include "vpx_ports/mem.h" #include "vp10/common/common.h" #include "vp10/encoder/resize.h" @@ -537,7 +537,7 @@ free(arrbuf); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_interpolate(const uint16_t *const input, int inlength, uint16_t *output, int outlength, int bd) { const int64_t delta = @@ -831,7 +831,7 @@ free(tmpbuf); free(arrbuf); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH void vp10_resize_frame420(const uint8_t *const y, int y_stride, @@ -879,7 +879,7 @@ ov, oheight, owidth, ouv_stride); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_resize_frame420(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, @@ -925,4 +925,4 @@ vp10_highbd_resize_plane(v, height, width, uv_stride, ov, oheight, owidth, ouv_stride, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vp10/encoder/resize.h b/vp10/encoder/resize.h index bf63770..a85735b 100644 --- a/vp10/encoder/resize.h +++ b/vp10/encoder/resize.h
@@ -69,7 +69,7 @@ int oheight, int owidth); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_resize_plane(const uint8_t *const input, int height, int width, @@ -124,7 +124,7 @@ int oheight, int owidth, int bd); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #ifdef __cplusplus } // extern "C"
diff --git a/vp10/encoder/temporal_filter.c b/vp10/encoder/temporal_filter.c index dfca11d..d9ccc95 100644 --- a/vp10/encoder/temporal_filter.c +++ b/vp10/encoder/temporal_filter.c
@@ -58,7 +58,7 @@ mv_precision_uv = MV_PRECISION_Q3; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { vp10_highbd_build_inter_predictor(y_mb_ptr, stride, &pred[0], 16, @@ -85,7 +85,7 @@ kernel, mv_precision_uv, x, y, xd->bd); return; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH vp10_build_inter_predictor(y_mb_ptr, stride, &pred[0], 16, &mv, @@ -163,7 +163,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vp10_highbd_temporal_filter_apply_c(uint8_t *frame1_8, unsigned int stride, uint8_t *frame2_8, @@ -209,7 +209,7 @@ byte += stride - block_width; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static int temporal_filter_find_matching_mb_c(VP10_COMP *cpi, uint8_t *arf_frame_buf, @@ -287,7 +287,7 @@ MACROBLOCKD *mbd = &cpi->td.mb.e_mbd; YV12_BUFFER_CONFIG *f = frames[alt_ref_index]; uint8_t *dst1, *dst2; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, predictor16[16 * 16 * 3]); DECLARE_ALIGNED(16, uint8_t, predictor8[16 * 16 * 3]); uint8_t *predictor; @@ -300,7 +300,7 @@ // Save input state uint8_t* input_buffer[MAX_MB_PLANE]; int i; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { predictor = CONVERT_TO_BYTEPTR(predictor16); } else { @@ -377,7 +377,7 @@ predictor, scale, mb_col * 16, mb_row * 16); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { int adj_strength = strength + 2 * (mbd->bd - 8); // Apply the filter (YUV) @@ -430,11 +430,11 @@ mb_uv_width, mb_uv_height, strength, filter_weight, accumulator + 512, count + 512); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (mbd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { uint16_t *dst1_16; uint16_t *dst2_16; @@ -575,7 +575,7 @@ } byte += stride - mb_uv_width; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH mb_y_offset += 16; mb_uv_offset += mb_uv_width; } @@ -681,7 +681,7 @@ // Setup scaling factors. Scaling on each of the arnr frames is not // supported. // ARF is produced at the native frame size and resized when coded. -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vp10_setup_scale_factors_for_frame(&sf, frames[0]->y_crop_width, frames[0]->y_crop_height, @@ -694,7 +694,7 @@ frames[0]->y_crop_height, frames[0]->y_crop_width, frames[0]->y_crop_height); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } temporal_filter_iterate_c(cpi, frames, frames_to_blur,
diff --git a/vp10/encoder/tokenize.c b/vp10/encoder/tokenize.c index a665a3c..46f3b65 100644 --- a/vp10/encoder/tokenize.c +++ b/vp10/encoder/tokenize.c
@@ -133,7 +133,7 @@ 7586, 8406, 8697, 9517, 7847, 8667, 8958, 9778, 9223, 10043, 10334, 11154 }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int16_t vp10_cat6_high10_high_cost[512] = { 74, 894, 1185, 2005, 1450, 2270, 2561, 3381, 1711, 2531, 2822, 3642, 3087, 3907, 4198, 5018, 2120, 2940, 3231, @@ -363,7 +363,7 @@ }; #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const vpx_tree_index cat1_high10[2] = {0, 0}; static const vpx_tree_index cat2_high10[4] = {2, 2, 0, 0}; static const vpx_tree_index cat3_high10[6] = {2, 2, 4, 4, 0, 0}; @@ -397,7 +397,7 @@ {0, 0, 0, 0, zero_cost} // EOB_TOKEN }; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const vp10_extra_bit vp10_extra_bits_high10[ENTROPY_TOKENS] = { {0, 0, 0, 0, zero_cost}, // ZERO {0, 0, 0, 1, sign_cost}, // ONE
diff --git a/vp10/encoder/tokenize.h b/vp10/encoder/tokenize.h index 5bad415..536a55c 100644 --- a/vp10/encoder/tokenize.h +++ b/vp10/encoder/tokenize.h
@@ -22,7 +22,7 @@ #define EOSB_TOKEN 127 // Not signalled, encoder only -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef int32_t EXTRABIT; #else typedef int16_t EXTRABIT; @@ -73,7 +73,7 @@ + cat6_high_table[extrabits >> 8]; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE const int16_t* vp10_get_high_cost_table(int bit_depth) { return bit_depth == 8 ? vp10_cat6_high_cost : (bit_depth == 10 ? vp10_cat6_high10_high_cost : @@ -84,7 +84,7 @@ (void) bit_depth; return vp10_cat6_high_cost; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static INLINE void vp10_get_token_extra(int v, int16_t *token, EXTRABIT *extra) { if (v >= CAT6_MIN_VAL || v <= -CAT6_MIN_VAL) {
diff --git a/vp10/encoder/x86/dct_mmx.asm b/vp10/encoder/x86/dct_mmx.asm index 2327fe9..34ce315 100644 --- a/vp10/encoder/x86/dct_mmx.asm +++ b/vp10/encoder/x86/dct_mmx.asm
@@ -65,7 +65,7 @@ psllw m2, 2 psllw m3, 2 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH pxor m4, m4 pxor m5, m5 pcmpgtw m4, m0
diff --git a/vp10/vp10_common.mk b/vp10/vp10_common.mk index 2eb3488..c8bcdf1 100644 --- a/vp10/vp10_common.mk +++ b/vp10/vp10_common.mk
@@ -73,7 +73,7 @@ VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/postproc_sse2.asm endif -ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifneq ($(CONFIG_VPX_HIGHBITDEPTH),yes) VP10_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/itrans4_dspr2.c VP10_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/itrans8_dspr2.c VP10_COMMON_SRCS-$(HAVE_DSPR2) += common/mips/dspr2/itrans16_dspr2.c @@ -93,7 +93,7 @@ VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_fwd_dct32x32_impl_sse2.h VP10_COMMON_SRCS-$(HAVE_SSE2) += common/x86/vp10_fwd_txfm_impl_sse2.h -ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifneq ($(CONFIG_VPX_HIGHBITDEPTH),yes) VP10_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iht4x4_add_neon.c VP10_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/iht8x8_add_neon.c endif
diff --git a/vp10/vp10_cx_iface.c b/vp10/vp10_cx_iface.c index 63d3adc..9a393ae 100644 --- a/vp10/vp10_cx_iface.c +++ b/vp10/vp10_cx_iface.c
@@ -245,7 +245,7 @@ ERROR("rc_twopass_stats_in missing EOS stats packet"); } -#if !CONFIG_VP9_HIGHBITDEPTH +#if !CONFIG_VPX_HIGHBITDEPTH if (cfg->g_profile > (unsigned int)PROFILE_1) { ERROR("Profile > 1 not supported in this build configuration"); } @@ -717,7 +717,7 @@ if (res == VPX_CODEC_OK) { set_encoder_config(&priv->oxcf, &priv->cfg, &priv->extra_cfg); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH priv->oxcf.use_highbitdepth = (ctx->init_flags & VPX_CODEC_USE_HIGHBITDEPTH) ? 1 : 0; #endif @@ -1368,7 +1368,7 @@ CODEC_INTERFACE(vpx_codec_vp10_cx) = { "WebM Project VP10 Encoder" VERSION_STRING, VPX_CODEC_INTERNAL_ABI_VERSION, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH VPX_CODEC_CAP_HIGHBITDEPTH | #endif VPX_CODEC_CAP_ENCODER | VPX_CODEC_CAP_PSNR, // vpx_codec_caps_t
diff --git a/vp10/vp10_iface_common.h b/vp10/vp10_iface_common.h index f97c6f4..b875275 100644 --- a/vp10/vp10_iface_common.h +++ b/vp10/vp10_iface_common.h
@@ -55,7 +55,7 @@ img->stride[VPX_PLANE_U] = yv12->uv_stride; img->stride[VPX_PLANE_V] = yv12->uv_stride; img->stride[VPX_PLANE_ALPHA] = yv12->y_stride; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (yv12->flags & YV12_FLAG_HIGHBITDEPTH) { // vpx_image_t uses byte strides and a pointer to the first byte // of the image. @@ -70,7 +70,7 @@ img->stride[VPX_PLANE_V] = 2 * yv12->uv_stride; img->stride[VPX_PLANE_ALPHA] = 2 * yv12->y_stride; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH img->bps = bps; img->user_priv = user_priv; img->img_data = yv12->buffer_alloc; @@ -103,7 +103,7 @@ yv12->color_space = img->cs; yv12->color_range = img->range; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { // In vpx_image_t // planes point to uint8 address of start of data @@ -127,7 +127,7 @@ yv12->border = (yv12->y_stride - img->w) / 2; #else yv12->border = (img->stride[VPX_PLANE_Y] - img->w) / 2; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH yv12->subsampling_x = img->x_chroma_shift; yv12->subsampling_y = img->y_chroma_shift; return VPX_CODEC_OK;
diff --git a/vp10/vp10cx.mk b/vp10/vp10cx.mk index dc3b271..6939847 100644 --- a/vp10/vp10cx.mk +++ b/vp10/vp10cx.mk
@@ -88,7 +88,7 @@ VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/temporal_filter_apply_sse2.asm VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.c -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) VP10_CX_SRCS-$(HAVE_SSE2) += encoder/x86/highbd_block_error_intrin_sse2.c endif @@ -112,7 +112,7 @@ VP10_CX_SRCS-$(HAVE_AVX2) += encoder/x86/error_intrin_avx2.c -ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifneq ($(CONFIG_VPX_HIGHBITDEPTH),yes) VP10_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/dct_neon.c VP10_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/error_neon.c endif
diff --git a/vpx/src/svc_encodeframe.c b/vpx/src/svc_encodeframe.c index 5c3fe93..a615a8a 100644 --- a/vpx/src/svc_encodeframe.c +++ b/vpx/src/svc_encodeframe.c
@@ -26,7 +26,7 @@ #include "vpx/vp8cx.h" #include "vpx/vpx_encoder.h" #include "vpx_mem/vpx_mem.h" -#include "vp9/common/vp9_onyxc_int.h" +#include "vp10/common/onyxc_int.h" #ifdef __MINGW32__ #define strtok_r strtok_s
diff --git a/vpx_dsp/avg.c b/vpx_dsp/avg.c index 26fe785..15df332 100644 --- a/vpx_dsp/avg.c +++ b/vpx_dsp/avg.c
@@ -190,7 +190,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH unsigned int vpx_highbd_avg_8x8_c(const uint8_t *s8, int p) { int i, j; int sum = 0; @@ -226,6 +226,6 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/fwd_txfm.c b/vpx_dsp/fwd_txfm.c index 7baaa8b..ba63683 100644 --- a/vpx_dsp/fwd_txfm.c +++ b/vpx_dsp/fwd_txfm.c
@@ -780,7 +780,7 @@ output[1] = 0; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { vpx_fdct4x4_c(input, output, stride); @@ -819,4 +819,4 @@ int stride) { vpx_fdct32x32_1_c(input, out, stride); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/intrapred.c b/vpx_dsp/intrapred.c index a9669e5..eb98fdb 100644 --- a/vpx_dsp/intrapred.c +++ b/vpx_dsp/intrapred.c
@@ -495,7 +495,7 @@ DST(1, 3) = AVG3(L, K, J); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE void highbd_d207_predictor(uint16_t *dst, ptrdiff_t stride, int bs, const uint16_t *above, const uint16_t *left, int bd) { @@ -776,7 +776,7 @@ dst += stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // This serves as a wrapper function, so that all the prediction functions // can be unified and accessed as a pointer array. Note that the boundary @@ -789,7 +789,7 @@ type##_predictor(dst, stride, size, above, left); \ } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define intra_pred_highbd_sized(type, size) \ void vpx_highbd_##type##_predictor_##size##x##size##_c( \ uint16_t *dst, ptrdiff_t stride, const uint16_t *above, \ @@ -827,7 +827,7 @@ intra_pred_sized(type, 8) \ intra_pred_sized(type, 16) \ intra_pred_sized(type, 32) -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH intra_pred_no_4x4(d207) intra_pred_no_4x4(d63)
diff --git a/vpx_dsp/inv_txfm.c b/vpx_dsp/inv_txfm.c index a0f59bf..f6f86d6 100644 --- a/vpx_dsp/inv_txfm.c +++ b/vpx_dsp/inv_txfm.c
@@ -1263,7 +1263,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) { /* 4-point reversible, orthonormal inverse Walsh-Hadamard in 3.5 adds, @@ -2510,4 +2510,4 @@ dest += stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/inv_txfm.h b/vpx_dsp/inv_txfm.h index 2358813..cc689f6 100644 --- a/vpx_dsp/inv_txfm.h +++ b/vpx_dsp/inv_txfm.h
@@ -40,7 +40,7 @@ return check_range(rv); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE tran_low_t highbd_check_range(tran_high_t input, int bd) { #if CONFIG_COEFFICIENT_RANGE_CHECKING @@ -64,7 +64,7 @@ tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS); return highbd_check_range(rv, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #if CONFIG_EMULATE_HARDWARE // When CONFIG_EMULATE_HARDWARE is 1 the transform performs a @@ -96,7 +96,7 @@ void iadst8_c(const tran_low_t *input, tran_low_t *output); void iadst16_c(const tran_low_t *input, tran_low_t *output); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_idct4_c(const tran_low_t *input, tran_low_t *output, int bd); void vpx_highbd_idct8_c(const tran_low_t *input, tran_low_t *output, int bd); void vpx_highbd_idct16_c(const tran_low_t *input, tran_low_t *output, int bd);
diff --git a/vpx_dsp/loopfilter.c b/vpx_dsp/loopfilter.c index 66f4d95..7dcc780 100644 --- a/vpx_dsp/loopfilter.c +++ b/vpx_dsp/loopfilter.c
@@ -18,7 +18,7 @@ return (int8_t)clamp(t, -128, 127); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE int16_t signed_char_clamp_high(int t, int bd) { switch (bd) { case 10: @@ -353,7 +353,7 @@ mb_lpf_vertical_edge_w(s, p, blimit, limit, thresh, 16); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // Should we apply any filter at all: 11111111 yes, 00000000 no ? static INLINE int8_t highbd_filter_mask(uint8_t limit, uint8_t blimit, uint16_t p3, uint16_t p2, @@ -742,4 +742,4 @@ int bd) { highbd_mb_lpf_vertical_edge_w(s, p, blimit, limit, thresh, 16, bd); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/quantize.c b/vpx_dsp/quantize.c index e4e741a..1be9fb7 100644 --- a/vpx_dsp/quantize.c +++ b/vpx_dsp/quantize.c
@@ -36,7 +36,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, const int16_t *round_ptr, const int16_t quant, @@ -88,7 +88,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, const int16_t *round_ptr, @@ -169,7 +169,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, @@ -278,7 +278,7 @@ *eob_ptr = eob + 1; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr,
diff --git a/vpx_dsp/quantize.h b/vpx_dsp/quantize.h index 89ec597..5280b08 100644 --- a/vpx_dsp/quantize.h +++ b/vpx_dsp/quantize.h
@@ -28,7 +28,7 @@ tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr, uint16_t *eob_ptr); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block, const int16_t *round_ptr, const int16_t quant_ptr,
diff --git a/vpx_dsp/sad.c b/vpx_dsp/sad.c index c0c3ff9..20a32cc 100644 --- a/vpx_dsp/sad.c +++ b/vpx_dsp/sad.c
@@ -55,7 +55,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE void highbd_avg_pred(uint16_t *comp_pred, const uint8_t *pred8, int width, int height, const uint8_t *ref8, int ref_stride) { @@ -72,7 +72,7 @@ ref += ref_stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #define sadMxN(m, n) \ unsigned int vpx_sad##m##x##n##_c(const uint8_t *src, int src_stride, \ @@ -176,7 +176,7 @@ sadMxNxK(4, 4, 8) sadMxNx4D(4, 4) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE unsigned int highbd_sad(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int width, int height) { @@ -315,4 +315,4 @@ highbd_sadMxNxK(4, 4, 8) highbd_sadMxNx4D(4, 4) -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/ssim.c b/vpx_dsp/ssim.c index cfe5bb3..b66cfb4 100644 --- a/vpx_dsp/ssim.c +++ b/vpx_dsp/ssim.c
@@ -45,7 +45,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_ssim_parms_8x8_c(const uint16_t *s, int sp, const uint16_t *r, int rp, uint32_t *sum_s, uint32_t *sum_r, @@ -62,7 +62,7 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static const int64_t cc1 = 26634; // (64^2*(.01*255)^2 static const int64_t cc2 = 239708; // (64^2*(.03*255)^2 @@ -94,7 +94,7 @@ return similarity(sum_s, sum_r, sum_sq_s, sum_sq_r, sum_sxr, 64); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static double highbd_ssim_8x8(const uint16_t *s, int sp, const uint16_t *r, int rp, unsigned int bd) { uint32_t sum_s = 0, sum_r = 0, sum_sq_s = 0, sum_sq_r = 0, sum_sxr = 0; @@ -108,7 +108,7 @@ sum_sxr >> (2 * oshift), 64); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH // We are using a 8x8 moving window with starting location of each 8x8 window // on the 4x4 pixel grid. Such arrangement allows the windows to overlap @@ -133,7 +133,7 @@ return ssim_total; } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static double vpx_highbd_ssim2(const uint8_t *img1, const uint8_t *img2, int stride_img1, int stride_img2, int width, int height, unsigned int bd) { @@ -155,7 +155,7 @@ ssim_total /= samples; return ssim_total; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH double vpx_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, @@ -452,7 +452,7 @@ } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH double vpx_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight, unsigned int bd) { @@ -502,4 +502,4 @@ return ssim_all; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/ssim.h b/vpx_dsp/ssim.h index 132f7f9..431aa4c 100644 --- a/vpx_dsp/ssim.h +++ b/vpx_dsp/ssim.h
@@ -80,7 +80,7 @@ const YV12_BUFFER_CONFIG *dest, double *ssim_y, double *ssim_u, double *ssim_v); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH double vpx_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight, @@ -92,7 +92,7 @@ double *ssim_u, double *ssim_v, unsigned int bd); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #ifdef __cplusplus } // extern "C"
diff --git a/vpx_dsp/subtract.c b/vpx_dsp/subtract.c index 556e013..1ba8b8c 100644 --- a/vpx_dsp/subtract.c +++ b/vpx_dsp/subtract.c
@@ -32,7 +32,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_subtract_block_c(int rows, int cols, int16_t *diff, ptrdiff_t diff_stride, const uint8_t *src8, ptrdiff_t src_stride, @@ -53,4 +53,4 @@ src += src_stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/variance.c b/vpx_dsp/variance.c index e8bddb0..6b4b384 100644 --- a/vpx_dsp/variance.c +++ b/vpx_dsp/variance.c
@@ -272,7 +272,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_variance64(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int w, int h, uint64_t *sse, uint64_t *sum) { @@ -618,4 +618,4 @@ ref += ref_stride; } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/vpx_convolve.c b/vpx_dsp/vpx_convolve.c index 2d1c927..16942bd 100644 --- a/vpx_dsp/vpx_convolve.c +++ b/vpx_dsp/vpx_convolve.c
@@ -336,7 +336,7 @@ filter_y, y_step_q4, w, h); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void highbd_convolve_horiz(const uint8_t *src8, ptrdiff_t src_stride, uint8_t *dst8, ptrdiff_t dst_stride, const InterpKernel *x_filters,
diff --git a/vpx_dsp/vpx_convolve.h b/vpx_dsp/vpx_convolve.h index 9ed3f17..aadffa8 100644 --- a/vpx_dsp/vpx_convolve.h +++ b/vpx_dsp/vpx_convolve.h
@@ -23,7 +23,7 @@ const int16_t *filter_y, int y_step_q4, int w, int h); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef void (*highbd_convolve_fn_t)(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4,
diff --git a/vpx_dsp/vpx_dsp.mk b/vpx_dsp/vpx_dsp.mk index e394688..d460091 100644 --- a/vpx_dsp/vpx_dsp.mk +++ b/vpx_dsp/vpx_dsp.mk
@@ -45,12 +45,12 @@ DSP_SRCS-$(HAVE_SSSE3) += x86/vpx_subpixel_8t_ssse3.asm endif # CONFIG_USE_X86INC -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) ifeq ($(CONFIG_USE_X86INC),yes) DSP_SRCS-$(HAVE_SSE) += x86/highbd_intrapred_sse2.asm DSP_SRCS-$(HAVE_SSE2) += x86/highbd_intrapred_sse2.asm endif # CONFIG_USE_X86INC -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH DSP_SRCS-$(HAVE_NEON_ASM) += arm/intrapred_neon_asm$(ASM) DSP_SRCS-$(HAVE_NEON) += arm/intrapred_neon.c @@ -75,7 +75,7 @@ DSP_SRCS-$(HAVE_SSSE3) += x86/vpx_subpixel_bilinear_ssse3.asm DSP_SRCS-$(HAVE_AVX2) += x86/vpx_subpixel_8t_intrin_avx2.c DSP_SRCS-$(HAVE_SSSE3) += x86/vpx_subpixel_8t_intrin_ssse3.c -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_SSE2) += x86/vpx_high_subpixel_8t_sse2.asm DSP_SRCS-$(HAVE_SSE2) += x86/vpx_high_subpixel_bilinear_sse2.asm endif @@ -156,9 +156,9 @@ DSP_SRCS-$(HAVE_DSPR2) += mips/loopfilter_mb_horiz_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/loopfilter_mb_vert_dspr2.c -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_SSE2) += x86/highbd_loopfilter_sse2.c -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH DSP_SRCS-yes += txfm_common.h DSP_SRCS-$(HAVE_SSE2) += x86/txfm_common_sse2.h @@ -227,14 +227,14 @@ DSP_SRCS-$(HAVE_MSA) += mips/idct16x16_msa.c DSP_SRCS-$(HAVE_MSA) += mips/idct32x32_msa.c -ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifneq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_DSPR2) += mips/inv_txfm_dspr2.h DSP_SRCS-$(HAVE_DSPR2) += mips/itrans4_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans8_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans16_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans32_dspr2.c DSP_SRCS-$(HAVE_DSPR2) += mips/itrans32_cols_dspr2.c -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH endif # CONFIG_VP9 || CONFIG_VP10 # quantization @@ -243,7 +243,7 @@ DSP_SRCS-yes += quantize.h DSP_SRCS-$(HAVE_SSE2) += x86/quantize_sse2.c -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_SSE2) += x86/highbd_quantize_intrin_sse2.c endif ifeq ($(ARCH_X86_64),yes) @@ -292,10 +292,10 @@ DSP_SRCS-$(HAVE_SSE2) += x86/sad_sse2.asm DSP_SRCS-$(HAVE_SSE2) += x86/subtract_sse2.asm -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad4d_sse2.asm DSP_SRCS-$(HAVE_SSE2) += x86/highbd_sad_sse2.asm -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH endif # CONFIG_USE_X86INC endif # CONFIG_ENCODERS @@ -334,13 +334,13 @@ DSP_SRCS-$(HAVE_SSE2) += x86/subpel_variance_sse2.asm # Contains SSE2 and SSSE3 endif # CONFIG_USE_X86INC -ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) +ifeq ($(CONFIG_VPX_HIGHBITDEPTH),yes) DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_sse2.c DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_impl_sse2.asm ifeq ($(CONFIG_USE_X86INC),yes) DSP_SRCS-$(HAVE_SSE2) += x86/highbd_subpel_variance_impl_sse2.asm endif # CONFIG_USE_X86INC -endif # CONFIG_VP9_HIGHBITDEPTH +endif # CONFIG_VPX_HIGHBITDEPTH endif # CONFIG_ENCODERS || CONFIG_POSTPROC || CONFIG_VP9_POSTPROC DSP_SRCS-no += $(DSP_SRCS_REMOVE-yes)
diff --git a/vpx_dsp/vpx_dsp_common.h b/vpx_dsp/vpx_dsp_common.h index a9e180e..eaaa4a3 100644 --- a/vpx_dsp/vpx_dsp_common.h +++ b/vpx_dsp/vpx_dsp_common.h
@@ -23,7 +23,7 @@ #define VPXMIN(x, y) (((x) < (y)) ? (x) : (y)) #define VPXMAX(x, y) (((x) > (y)) ? (x) : (y)) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // Note: // tran_low_t is the datatype used for final transform coefficients. // tran_high_t is the datatype used for intermediate transform stages. @@ -35,7 +35,7 @@ // tran_high_t is the datatype used for intermediate transform stages. typedef int32_t tran_high_t; typedef int16_t tran_low_t; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH static INLINE uint8_t clip_pixel(int val) { return (val > 255) ? 255 : (val < 0) ? 0 : val; @@ -49,7 +49,7 @@ return value < low ? low : (value > high ? high : value); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE uint16_t clip_pixel_highbd(int val, int bd) { switch (bd) { case 8: @@ -61,7 +61,7 @@ return (uint16_t)clamp(val, 0, 4095); } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #ifdef __cplusplus } // extern "C"
diff --git a/vpx_dsp/vpx_dsp_rtcd_defs.pl b/vpx_dsp/vpx_dsp_rtcd_defs.pl index 6c6f15e..392870d 100644 --- a/vpx_dsp/vpx_dsp_rtcd_defs.pl +++ b/vpx_dsp/vpx_dsp_rtcd_defs.pl
@@ -256,7 +256,7 @@ specialize qw/vpx_dc_128_predictor_32x32 msa neon/, "$sse2_x86inc"; # High bitdepth functions -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/void vpx_highbd_d207_predictor_4x4/, "uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd"; specialize qw/vpx_highbd_d207_predictor_4x4/; @@ -448,7 +448,7 @@ add_proto qw/void vpx_highbd_dc_128_predictor_32x32/, "uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd"; specialize qw/vpx_highbd_dc_128_predictor_32x32/; -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH # # Sub Pixel Filters @@ -495,7 +495,7 @@ add_proto qw/void vpx_scaled_avg_vert/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h"; specialize qw/vpx_scaled_avg_vert/; -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # # Sub Pixel Filters # @@ -522,7 +522,7 @@ add_proto qw/void vpx_highbd_convolve8_avg_vert/, "const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps"; specialize qw/vpx_highbd_convolve8_avg_vert/, "$sse2_x86_64"; -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH # # Loopfilter @@ -565,7 +565,7 @@ add_proto qw/void vpx_lpf_horizontal_4_dual/, "uint8_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1"; specialize qw/vpx_lpf_horizontal_4_dual sse2 neon dspr2 msa/; -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/void vpx_highbd_lpf_vertical_16/, "uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd"; specialize qw/vpx_highbd_lpf_vertical_16 sse2/; @@ -598,7 +598,7 @@ add_proto qw/void vpx_highbd_lpf_horizontal_4_dual/, "uint16_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd"; specialize qw/vpx_highbd_lpf_horizontal_4_dual sse2/; -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH # # Encoder functions. @@ -608,7 +608,7 @@ # Forward transform # if ((vpx_config("CONFIG_VP9_ENCODER") eq "yes") || (vpx_config("CONFIG_VP10_ENCODER") eq "yes")) { -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/void vpx_fdct4x4/, "const int16_t *input, tran_low_t *output, int stride"; specialize qw/vpx_fdct4x4 sse2/; @@ -686,13 +686,13 @@ add_proto qw/void vpx_fdct32x32_1/, "const int16_t *input, tran_low_t *output, int stride"; specialize qw/vpx_fdct32x32_1 sse2 msa/; -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH } # CONFIG_VP9_ENCODER || CONFIG_VP10_ENCODER # # Inverse transform if ((vpx_config("CONFIG_VP9") eq "yes") || (vpx_config("CONFIG_VP10") eq "yes")) { -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # Note as optimized versions of these functions are added we need to add a check to ensure # that when CONFIG_EMULATE_HARDWARE is on, it defaults to the C versions only. add_proto qw/void vpx_iwht4x4_1_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride"; @@ -924,7 +924,7 @@ add_proto qw/void vpx_iwht4x4_16_add/, "const tran_low_t *input, uint8_t *dest, int dest_stride"; specialize qw/vpx_iwht4x4_16_add msa/, "$sse2_x86inc"; } # CONFIG_EMULATE_HARDWARE -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH } # CONFIG_VP9 || CONFIG_VP10 # @@ -937,13 +937,13 @@ add_proto qw/void vpx_quantize_b_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"; specialize qw/vpx_quantize_b_32x32/, "$ssse3_x86_64_x86inc", "$avx_x86_64_x86inc"; - if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { + if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/void vpx_highbd_quantize_b/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"; specialize qw/vpx_highbd_quantize_b sse2/; add_proto qw/void vpx_highbd_quantize_b_32x32/, "const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan"; specialize qw/vpx_highbd_quantize_b_32x32 sse2/; - } # CONFIG_VP9_HIGHBITDEPTH + } # CONFIG_VPX_HIGHBITDEPTH } # CONFIG_VP9_ENCODER || CONFIG_VP10_ENCODER if (vpx_config("CONFIG_ENCODERS") eq "yes") { @@ -1172,7 +1172,7 @@ specialize qw/vpx_ssim_parms_16x16/, "$sse2_x86_64"; } -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { # # Block subtraction # @@ -1372,7 +1372,7 @@ add_proto qw/void vpx_highbd_ssim_parms_8x8/, "const uint16_t *s, int sp, const uint16_t *r, int rp, uint32_t *sum_s, uint32_t *sum_r, uint32_t *sum_sq_s, uint32_t *sum_sq_r, uint32_t *sum_sxr"; specialize qw/vpx_highbd_ssim_parms_8x8/; } -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH } # CONFIG_ENCODERS if (vpx_config("CONFIG_ENCODERS") eq "yes" || vpx_config("CONFIG_POSTPROC") eq "yes" || vpx_config("CONFIG_VP9_POSTPROC") eq "yes") { @@ -1541,7 +1541,7 @@ add_proto qw/uint32_t vpx_variance_halfpixvar16x16_hv/, "const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, uint32_t *sse"; specialize qw/vpx_variance_halfpixvar16x16_hv mmx sse2 media/; -if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { +if (vpx_config("CONFIG_VPX_HIGHBITDEPTH") eq "yes") { add_proto qw/unsigned int vpx_highbd_12_variance64x64/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; specialize qw/vpx_highbd_12_variance64x64 sse2/; @@ -1898,7 +1898,7 @@ add_proto qw/uint32_t vpx_highbd_8_sub_pixel_avg_variance4x8/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred"; add_proto qw/uint32_t vpx_highbd_8_sub_pixel_avg_variance4x4/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred"; -} # CONFIG_VP9_HIGHBITDEPTH +} # CONFIG_VPX_HIGHBITDEPTH } # CONFIG_ENCODERS || CONFIG_POSTPROC || CONFIG_VP9_POSTPROC 1;
diff --git a/vpx_dsp/x86/convolve.h b/vpx_dsp/x86/convolve.h index b6fbfcf..d15c67d 100644 --- a/vpx_dsp/x86/convolve.h +++ b/vpx_dsp/x86/convolve.h
@@ -136,7 +136,7 @@ } \ } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH typedef void highbd_filter8_1dfunction ( const uint16_t *src_ptr, @@ -285,6 +285,6 @@ h, bd); \ } \ } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // VPX_DSP_X86_CONVOLVE_H_
diff --git a/vpx_dsp/x86/fwd_txfm_sse2.c b/vpx_dsp/x86/fwd_txfm_sse2.c index bca72e8..8a01bb7 100644 --- a/vpx_dsp/x86/fwd_txfm_sse2.c +++ b/vpx_dsp/x86/fwd_txfm_sse2.c
@@ -246,7 +246,7 @@ #undef FDCT32x32_HIGH_PRECISION #undef DCT_HIGH_BIT_DEPTH -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define DCT_HIGH_BIT_DEPTH 1 #define FDCT4x4_2D vpx_highbd_fdct4x4_sse2 #define FDCT8x8_2D vpx_highbd_fdct8x8_sse2 @@ -268,4 +268,4 @@ #undef FDCT32x32_2D #undef FDCT32x32_HIGH_PRECISION #undef DCT_HIGH_BIT_DEPTH -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/x86/fwd_txfm_sse2.h b/vpx_dsp/x86/fwd_txfm_sse2.h index 94d5bef..cb77bc5 100644 --- a/vpx_dsp/x86/fwd_txfm_sse2.h +++ b/vpx_dsp/x86/fwd_txfm_sse2.h
@@ -323,7 +323,7 @@ } static INLINE void store_output(const __m128i *poutput, tran_low_t* dst_ptr) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const __m128i zero = _mm_setzero_si128(); const __m128i sign_bits = _mm_cmplt_epi16(*poutput, zero); __m128i out0 = _mm_unpacklo_epi16(*poutput, sign_bits); @@ -332,11 +332,11 @@ _mm_store_si128((__m128i *)(dst_ptr + 4), out1); #else _mm_store_si128((__m128i *)(dst_ptr), *poutput); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH } static INLINE void storeu_output(const __m128i *poutput, tran_low_t* dst_ptr) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const __m128i zero = _mm_setzero_si128(); const __m128i sign_bits = _mm_cmplt_epi16(*poutput, zero); __m128i out0 = _mm_unpacklo_epi16(*poutput, sign_bits); @@ -345,7 +345,7 @@ _mm_storeu_si128((__m128i *)(dst_ptr + 4), out1); #else _mm_storeu_si128((__m128i *)(dst_ptr), *poutput); -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH }
diff --git a/vpx_dsp/x86/highbd_quantize_intrin_sse2.c b/vpx_dsp/x86/highbd_quantize_intrin_sse2.c index fd46bef..42be1ea 100644 --- a/vpx_dsp/x86/highbd_quantize_intrin_sse2.c +++ b/vpx_dsp/x86/highbd_quantize_intrin_sse2.c
@@ -14,7 +14,7 @@ #include "vpx_mem/vpx_mem.h" #include "vpx_ports/mem.h" -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void vpx_highbd_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t count, int skip_block,
diff --git a/vpx_dsp/x86/inv_txfm_sse2.c b/vpx_dsp/x86/inv_txfm_sse2.c index ae907fd..7c00640 100644 --- a/vpx_dsp/x86/inv_txfm_sse2.c +++ b/vpx_dsp/x86/inv_txfm_sse2.c
@@ -3490,7 +3490,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static INLINE __m128i clamp_high_sse2(__m128i value, int bd) { __m128i ubounded, retval; const __m128i zero = _mm_set1_epi16(0); @@ -4057,4 +4057,4 @@ } } } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_dsp/x86/inv_txfm_sse2.h b/vpx_dsp/x86/inv_txfm_sse2.h index bd520c1..b9f3983 100644 --- a/vpx_dsp/x86/inv_txfm_sse2.h +++ b/vpx_dsp/x86/inv_txfm_sse2.h
@@ -93,7 +93,7 @@ // Function to allow 8 bit optimisations to be used when profile 0 is used with // highbitdepth enabled static INLINE __m128i load_input_data(const tran_low_t *data) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH return octa_set_epi16(data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]); #else
diff --git a/vpx_dsp/x86/quantize_avx_x86_64.asm b/vpx_dsp/x86/quantize_avx_x86_64.asm index 01c4129..b3d78c4 100644 --- a/vpx_dsp/x86/quantize_avx_x86_64.asm +++ b/vpx_dsp/x86/quantize_avx_x86_64.asm
@@ -41,7 +41,7 @@ mova m0, [zbinq] ; m0 = zbin ; Get DC and first 15 AC coeffs - in this special case, that is all. -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; coeff stored as 32bit numbers but we process them as 16 bit numbers mova m9, [coeffq] packssdw m9, [coeffq+16] ; m9 = c[i] @@ -73,7 +73,7 @@ ptest m14, m14 jnz .single_nonzero -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [r1 ], ymm5 mova [r1+32], ymm5 mova [r2 ], ymm5 @@ -121,7 +121,7 @@ pand m8, m7 pand m13, m12 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; Store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m8 punpckhwd m6, m8, m6 @@ -142,7 +142,7 @@ punpckhqdq m3, m3 pmullw m13, m3 ; dqc[i] = qc[i] * q -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; Store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m8 punpckhwd m6, m8, m6 @@ -226,7 +226,7 @@ DEFINE_ARGS coeff, ncoeff, d1, qcoeff, dqcoeff, iscan, d2, d3, d4, d5, eob -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH lea coeffq, [ coeffq+ncoeffq*4] lea qcoeffq, [ qcoeffq+ncoeffq*4] lea dqcoeffq, [dqcoeffq+ncoeffq*4] @@ -239,7 +239,7 @@ neg ncoeffq ; get DC and first 15 AC coeffs -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; coeff stored as 32bit numbers & require 16bit numbers mova m9, [coeffq+ncoeffq*4+ 0] packssdw m9, [coeffq+ncoeffq*4+16] @@ -261,7 +261,7 @@ ptest m14, m14 jnz .first_nonzero -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [qcoeffq+ncoeffq*4 ], ymm5 mova [qcoeffq+ncoeffq*4+32], ymm5 mova [dqcoeffq+ncoeffq*4 ], ymm5 @@ -299,7 +299,7 @@ pand m8, m7 pand m13, m12 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m8 punpckhwd m6, m8, m6 @@ -330,7 +330,7 @@ psignw m13, m10 %endif -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m8 punpckhwd m6, m8, m6 @@ -360,7 +360,7 @@ .ac_only_loop: -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; pack coeff from 32bit to 16bit array mova m9, [coeffq+ncoeffq*4+ 0] packssdw m9, [coeffq+ncoeffq*4+16] @@ -382,7 +382,7 @@ ptest m14, m14 jnz .rest_nonzero -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [qcoeffq+ncoeffq*4+ 0], ymm5 mova [qcoeffq+ncoeffq*4+32], ymm5 mova [dqcoeffq+ncoeffq*4+ 0], ymm5 @@ -421,7 +421,7 @@ pand m14, m7 pand m13, m12 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m14 punpckhwd m6, m14, m6 @@ -451,7 +451,7 @@ psignw m13, m10 %endif -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff pcmpgtw m6, m5, m14 punpckhwd m6, m14, m6 @@ -507,7 +507,7 @@ DEFINE_ARGS dqcoeff, ncoeff, qcoeff, eob -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH lea dqcoeffq, [dqcoeffq+ncoeffq*4] lea qcoeffq, [ qcoeffq+ncoeffq*4] %else @@ -519,7 +519,7 @@ pxor m7, m7 .blank_loop: -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [dqcoeffq+ncoeffq*4+ 0], ymm7 mova [dqcoeffq+ncoeffq*4+32], ymm7 mova [qcoeffq+ncoeffq*4+ 0], ymm7
diff --git a/vpx_dsp/x86/quantize_sse2.c b/vpx_dsp/x86/quantize_sse2.c index 8aa4568..962fa1f 100644 --- a/vpx_dsp/x86/quantize_sse2.c +++ b/vpx_dsp/x86/quantize_sse2.c
@@ -15,7 +15,7 @@ #include "vpx/vpx_integer.h" static INLINE __m128i load_coefficients(const tran_low_t *coeff_ptr) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH return _mm_setr_epi16((int16_t)coeff_ptr[0], (int16_t)coeff_ptr[1], (int16_t)coeff_ptr[2], (int16_t)coeff_ptr[3], (int16_t)coeff_ptr[4], (int16_t)coeff_ptr[5], (int16_t)coeff_ptr[6], (int16_t)coeff_ptr[7]); @@ -26,7 +26,7 @@ static INLINE void store_coefficients(__m128i coeff_vals, tran_low_t *coeff_ptr) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH __m128i one = _mm_set1_epi16(1); __m128i coeff_vals_hi = _mm_mulhi_epi16(coeff_vals, one); __m128i coeff_vals_lo = _mm_mullo_epi16(coeff_vals, one);
diff --git a/vpx_dsp/x86/quantize_ssse3_x86_64.asm b/vpx_dsp/x86/quantize_ssse3_x86_64.asm index ca21539..f97ee57 100644 --- a/vpx_dsp/x86/quantize_ssse3_x86_64.asm +++ b/vpx_dsp/x86/quantize_ssse3_x86_64.asm
@@ -53,7 +53,7 @@ %endif pxor m5, m5 ; m5 = dedicated zero DEFINE_ARGS coeff, ncoeff, d1, qcoeff, dqcoeff, iscan, d2, d3, d4, d5, eob -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH lea coeffq, [ coeffq+ncoeffq*4] lea qcoeffq, [ qcoeffq+ncoeffq*4] lea dqcoeffq, [dqcoeffq+ncoeffq*4] @@ -66,7 +66,7 @@ neg ncoeffq ; get DC and first 15 AC coeffs -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; coeff stored as 32bit numbers & require 16bit numbers mova m9, [ coeffq+ncoeffq*4+ 0] packssdw m9, [ coeffq+ncoeffq*4+16] @@ -96,7 +96,7 @@ psignw m13, m10 ; m13 = reinsert sign pand m8, m7 pand m13, m12 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff mova m11, m8 mova m6, m8 @@ -131,7 +131,7 @@ psignw m8, m9 psignw m13, m10 %endif -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff mova m11, m8 mova m6, m8 @@ -166,7 +166,7 @@ jz .accumulate_eob .ac_only_loop: -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; pack coeff from 32bit to 16bit array mova m9, [ coeffq+ncoeffq*4+ 0] packssdw m9, [ coeffq+ncoeffq*4+16] @@ -198,7 +198,7 @@ psignw m13, m10 ; m13 = reinsert sign pand m14, m7 pand m13, m12 -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff pxor m11, m11 mova m11, m14 @@ -233,7 +233,7 @@ psignw m14, m9 psignw m13, m10 %endif -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH ; store 16bit numbers as 32bit numbers in array pointed to by qcoeff mova m11, m14 mova m6, m14 @@ -271,7 +271,7 @@ %ifidn %1, b_32x32 jmp .accumulate_eob .skip_iter: -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [qcoeffq+ncoeffq*4+ 0], m5 mova [qcoeffq+ncoeffq*4+16], m5 mova [qcoeffq+ncoeffq*4+32], m5 @@ -310,7 +310,7 @@ mov r2, qcoeffmp mov r3, eobmp DEFINE_ARGS dqcoeff, ncoeff, qcoeff, eob -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH lea dqcoeffq, [dqcoeffq+ncoeffq*4] lea qcoeffq, [ qcoeffq+ncoeffq*4] %else @@ -320,7 +320,7 @@ neg ncoeffq pxor m7, m7 .blank_loop: -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH mova [dqcoeffq+ncoeffq*4+ 0], m7 mova [dqcoeffq+ncoeffq*4+16], m7 mova [dqcoeffq+ncoeffq*4+32], m7
diff --git a/vpx_dsp/x86/vpx_asm_stubs.c b/vpx_dsp/x86/vpx_asm_stubs.c index 422b0fc..97256e0 100644 --- a/vpx_dsp/x86/vpx_asm_stubs.c +++ b/vpx_dsp/x86/vpx_asm_stubs.c
@@ -77,7 +77,7 @@ FUN_CONV_2D(, sse2); FUN_CONV_2D(avg_ , sse2); -#if CONFIG_VP9_HIGHBITDEPTH && ARCH_X86_64 +#if CONFIG_VPX_HIGHBITDEPTH && ARCH_X86_64 highbd_filter8_1dfunction vpx_highbd_filter_block1d16_v8_sse2; highbd_filter8_1dfunction vpx_highbd_filter_block1d16_h8_sse2; highbd_filter8_1dfunction vpx_highbd_filter_block1d8_v8_sse2; @@ -158,5 +158,5 @@ // int w, int h, int bd); HIGH_FUN_CONV_2D(, sse2); HIGH_FUN_CONV_2D(avg_ , sse2); -#endif // CONFIG_VP9_HIGHBITDEPTH && ARCH_X86_64 +#endif // CONFIG_VPX_HIGHBITDEPTH && ARCH_X86_64 #endif // HAVE_SSE2
diff --git a/vpx_dsp/x86/vpx_convolve_copy_sse2.asm b/vpx_dsp/x86/vpx_convolve_copy_sse2.asm index abc0270..eb66e84 100644 --- a/vpx_dsp/x86/vpx_convolve_copy_sse2.asm +++ b/vpx_dsp/x86/vpx_convolve_copy_sse2.asm
@@ -222,7 +222,7 @@ INIT_XMM sse2 convolve_fn copy convolve_fn avg -%if CONFIG_VP9_HIGHBITDEPTH +%if CONFIG_VPX_HIGHBITDEPTH convolve_fn copy, highbd convolve_fn avg, highbd %endif
diff --git a/vpx_mem/vpx_mem.c b/vpx_mem/vpx_mem.c index b98fe83..d108b3c 100644 --- a/vpx_mem/vpx_mem.c +++ b/vpx_mem/vpx_mem.c
@@ -91,7 +91,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void *vpx_memset16(void *dest, int val, size_t length) { size_t i; uint16_t *dest16 = (uint16_t *)dest; @@ -99,4 +99,4 @@ *dest16++ = val; return dest; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH
diff --git a/vpx_mem/vpx_mem.h b/vpx_mem/vpx_mem.h index a006e0f..0dd4d14 100644 --- a/vpx_mem/vpx_mem.h +++ b/vpx_mem/vpx_mem.h
@@ -30,7 +30,7 @@ void *vpx_realloc(void *memblk, size_t size); void vpx_free(void *memblk); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void *vpx_memset16(void *dest, int val, size_t length); #endif
diff --git a/vpx_ports/mem.h b/vpx_ports/mem.h index 7502f90..0752035 100644 --- a/vpx_ports/mem.h +++ b/vpx_ports/mem.h
@@ -45,9 +45,9 @@ #define ALIGN_POWER_OF_TWO(value, n) \ (((value) + ((1 << (n)) - 1)) & ~((1 << (n)) - 1)) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH #define CONVERT_TO_SHORTPTR(x) ((uint16_t*)(((uintptr_t)x) << 1)) #define CONVERT_TO_BYTEPTR(x) ((uint8_t*)(((uintptr_t)x) >> 1)) -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // VPX_PORTS_MEM_H_
diff --git a/vpx_scale/generic/yv12config.c b/vpx_scale/generic/yv12config.c index 46e5688..4f3a445 100644 --- a/vpx_scale/generic/yv12config.c +++ b/vpx_scale/generic/yv12config.c
@@ -137,7 +137,7 @@ int vpx_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border, @@ -168,20 +168,20 @@ const int alpha_border_h = border; const uint64_t alpha_plane_size = (alpha_height + 2 * alpha_border_h) * (uint64_t)alpha_stride + byte_alignment; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint64_t frame_size = (1 + use_highbitdepth) * (yplane_size + 2 * uvplane_size + alpha_plane_size); #else const uint64_t frame_size = yplane_size + 2 * uvplane_size + alpha_plane_size; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #else -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const uint64_t frame_size = (1 + use_highbitdepth) * (yplane_size + 2 * uvplane_size); #else const uint64_t frame_size = yplane_size + 2 * uvplane_size; -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // CONFIG_ALPHA uint8_t *buf = NULL; @@ -258,7 +258,7 @@ ybf->subsampling_y = ss_y; buf = ybf->buffer_alloc; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (use_highbitdepth) { // Store uint16 addresses when using 16bit framebuffers buf = CONVERT_TO_BYTEPTR(ybf->buffer_alloc); @@ -266,7 +266,7 @@ } else { ybf->flags = 0; } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH ybf->y_buffer = (uint8_t *)yv12_align_addr( buf + (border * y_stride) + border, vp9_byte_align); @@ -294,7 +294,7 @@ int vpx_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border, @@ -302,7 +302,7 @@ if (ybf) { vpx_free_frame_buffer(ybf); return vpx_realloc_frame_buffer(ybf, width, height, ss_x, ss_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH use_highbitdepth, #endif border, byte_alignment, NULL, NULL, NULL);
diff --git a/vpx_scale/generic/yv12extend.c b/vpx_scale/generic/yv12extend.c index 0fceab8..e3b794f 100644 --- a/vpx_scale/generic/yv12extend.c +++ b/vpx_scale/generic/yv12extend.c
@@ -15,8 +15,8 @@ #include "vpx_mem/vpx_mem.h" #include "vpx_ports/mem.h" #include "vpx_scale/yv12config.h" -#if CONFIG_VP9_HIGHBITDEPTH -#include "vp9/common/vp9_common.h" +#if CONFIG_VPX_HIGHBITDEPTH +#include "vp10/common/common.h" #endif static void extend_plane(uint8_t *const src, int src_stride, @@ -60,7 +60,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void extend_plane_high(uint8_t *const src8, int src_stride, int width, int height, int extend_top, int extend_left, @@ -113,7 +113,7 @@ assert(ybf->y_height - ybf->y_crop_height >= 0); assert(ybf->y_width - ybf->y_crop_width >= 0); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (ybf->flags & YV12_FLAG_HIGHBITDEPTH) { extend_plane_high( ybf->y_buffer, ybf->y_stride, @@ -173,7 +173,7 @@ assert(ybf->y_height - ybf->y_crop_height >= 0); assert(ybf->y_width - ybf->y_crop_width >= 0); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (ybf->flags & YV12_FLAG_HIGHBITDEPTH) { extend_plane_high(ybf->y_buffer, ybf->y_stride, ybf->y_crop_width, ybf->y_crop_height, @@ -210,13 +210,13 @@ extend_frame(ybf, inner_bw); } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH void memcpy_short_addr(uint8_t *dst8, const uint8_t *src8, int num) { uint16_t *dst = CONVERT_TO_SHORTPTR(dst8); uint16_t *src = CONVERT_TO_SHORTPTR(src8); memcpy(dst, src, num * sizeof(uint16_t)); } -#endif // CONFIG_VP9_HIGHBITDEPTH +#endif // CONFIG_VPX_HIGHBITDEPTH #endif // CONFIG_VP10 // Copies the source image into the destination image and updates the @@ -236,7 +236,7 @@ assert(src_ybc->y_height == dst_ybc->y_height); #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src_ybc->flags & YV12_FLAG_HIGHBITDEPTH) { assert(dst_ybc->flags & YV12_FLAG_HIGHBITDEPTH); for (row = 0; row < src_ybc->y_height; ++row) { @@ -303,7 +303,7 @@ const uint8_t *src = src_ybc->y_buffer; uint8_t *dst = dst_ybc->y_buffer; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src_ybc->flags & YV12_FLAG_HIGHBITDEPTH) { const uint16_t *src16 = CONVERT_TO_SHORTPTR(src); uint16_t *dst16 = CONVERT_TO_SHORTPTR(dst);
diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h index 152fbce..02f21eb 100644 --- a/vpx_scale/yv12config.h +++ b/vpx_scale/yv12config.h
@@ -74,7 +74,7 @@ int vpx_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border, int byte_alignment); @@ -88,7 +88,7 @@ // on failure. int vpx_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int use_highbitdepth, #endif int border,
diff --git a/vpxdec.c b/vpxdec.c index b657fea..9bc553d 100644 --- a/vpxdec.c +++ b/vpxdec.c
@@ -89,7 +89,7 @@ NULL, "frame-buffers", 1, "Number of frame buffers to use"); static const arg_def_t md5arg = ARG_DEF( NULL, "md5", 0, "Compute the MD5 sum of the decoded frame"); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const arg_def_t outbitdeptharg = ARG_DEF( NULL, "output-bit-depth", 1, "Output bit-depth for decoded frames"); #endif @@ -99,7 +99,7 @@ &progressarg, &limitarg, &skiparg, &postprocarg, &summaryarg, &outputfile, &threadsarg, &frameparallelarg, &verbosearg, &scalearg, &fb_arg, &md5arg, &error_concealment, &continuearg, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH &outbitdeptharg, #endif NULL @@ -109,7 +109,7 @@ #if CONFIG_LIBYUV static INLINE int libyuv_scale(vpx_image_t *src, vpx_image_t *dst, FilterModeEnum mode) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (src->fmt == VPX_IMG_FMT_I42016) { assert(dst->fmt == VPX_IMG_FMT_I42016); return I420Scale_16((uint16_t*)src->planes[VPX_PLANE_Y], @@ -262,7 +262,7 @@ static void write_image_file(const vpx_image_t *img, const int planes[3], FILE *file) { int i, y; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH const int bytes_per_sample = ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1); #else const int bytes_per_sample = 1; @@ -496,7 +496,7 @@ } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static int img_shifted_realloc_required(const vpx_image_t *img, const vpx_image_t *shifted, vpx_img_fmt_t required_fmt) { @@ -530,14 +530,14 @@ int opt_yv12 = 0; int opt_i420 = 0; vpx_codec_dec_cfg_t cfg = {0, 0, 0}; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH unsigned int output_bit_depth = 0; #endif int frames_corrupted = 0; int dec_flags = 0; int do_scale = 0; vpx_image_t *scaled_img = NULL; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_image_t *img_shifted = NULL; #endif int frame_avail, got_data, flush_decoder = 0; @@ -616,7 +616,7 @@ num_external_frame_buffers = arg_parse_uint(&arg); else if (arg_match(&arg, &continuearg, argi)) keep_going = 1; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH else if (arg_match(&arg, &outbitdeptharg, argi)) { output_bit_depth = arg_parse_uint(&arg); } @@ -854,7 +854,7 @@ #endif } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // Default to codec bit depth if output bit depth not set if (!output_bit_depth && single_file && !do_md5) { output_bit_depth = img->bit_depth; @@ -991,7 +991,7 @@ free(buf); if (scaled_img) vpx_img_free(scaled_img); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (img_shifted) vpx_img_free(img_shifted); #endif
diff --git a/vpxenc.c b/vpxenc.c index 17da4a9..7b68297 100644 --- a/vpxenc.c +++ b/vpxenc.c
@@ -201,7 +201,7 @@ "y", "disable-warning-prompt", 0, "Display warnings, but do not prompt user to continue."); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const arg_def_t test16bitinternalarg = ARG_DEF( NULL, "test-16bit-internal", 0, "Force use of 16 bit internal buffer"); #endif @@ -251,7 +251,7 @@ #endif &timebase, &framerate, &error_resilient, -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH &test16bitinternalarg, #endif &lag_in_frames, NULL @@ -395,7 +395,7 @@ NULL, "color-space", 1, "The color space of input content:", color_space_enum); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static const struct arg_enum_list bitdepth_enum[] = { {"8", VPX_BITS_8}, {"10", VPX_BITS_10}, @@ -516,7 +516,7 @@ #define mmin(a, b) ((a) < (b) ? (a) : (b)) -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH static void find_mismatch_high(const vpx_image_t *const img1, const vpx_image_t *const img2, int yloc[4], int uloc[4], int vloc[4]) { @@ -714,7 +714,7 @@ match &= (img1->fmt == img2->fmt); match &= (img1->d_w == img2->d_w); match &= (img1->d_h == img2->d_h); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (img1->fmt & VPX_IMG_FMT_HIGHBITDEPTH) { l_w *= 2; c_w *= 2; @@ -763,7 +763,7 @@ int arg_ctrl_cnt; int write_webm; int have_kf_max_dist; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH // whether to use 16bit internal buffers int use_16bit_internal; #endif @@ -1049,7 +1049,7 @@ static const int *ctrl_args_map = NULL; struct stream_config *config = &stream->config; int eos_mark_found = 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH int test_16bit_internal = 0; #endif @@ -1102,7 +1102,7 @@ config->cfg.g_w = arg_parse_uint(&arg); } else if (arg_match(&arg, &height, argi)) { config->cfg.g_h = arg_parse_uint(&arg); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else if (arg_match(&arg, &bitdeptharg, argi)) { config->cfg.g_bit_depth = arg_parse_enum_or_int(&arg); } else if (arg_match(&arg, &inbitdeptharg, argi)) { @@ -1175,7 +1175,7 @@ config->have_kf_max_dist = 1; } else if (arg_match(&arg, &kf_disabled, argi)) { config->cfg.kf_mode = VPX_KF_DISABLED; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH } else if (arg_match(&arg, &test16bitinternalarg, argi)) { if (strcmp(global->codec->name, "vp9") == 0 || strcmp(global->codec->name, "vp10") == 0) { @@ -1211,7 +1211,7 @@ argj++; } } -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (strcmp(global->codec->name, "vp9") == 0 || strcmp(global->codec->name, "vp10") == 0) { config->use_16bit_internal = test_16bit_internal | @@ -1497,7 +1497,7 @@ flags |= global->show_psnr ? VPX_CODEC_USE_PSNR : 0; flags |= global->out_part ? VPX_CODEC_USE_OUTPUT_PARTITION : 0; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH flags |= stream->config.use_16bit_internal ? VPX_CODEC_USE_HIGHBITDEPTH : 0; #endif @@ -1545,7 +1545,7 @@ / cfg->g_timebase.num / global->framerate.num; /* Scale if necessary */ -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (img) { if ((img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { @@ -1778,7 +1778,7 @@ enc_img = ref_enc.img; vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref_dec); dec_img = ref_dec.img; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if ((enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) != (dec_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH)) { if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) { @@ -1798,7 +1798,7 @@ if (!compare_img(&enc_img, &dec_img)) { int y[4], u[4], v[4]; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (enc_img.fmt & VPX_IMG_FMT_HIGHBITDEPTH) { find_mismatch_high(&enc_img, &dec_img, y, u, v); } else { @@ -1848,7 +1848,7 @@ int main(int argc, const char **argv_) { int pass; vpx_image_t raw; -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_image_t raw_shift; int allocated_raw_shift = 0; int use_16bit_internal = 0; @@ -2036,7 +2036,7 @@ &input.pixel_aspect_ratio)); FOREACH_STREAM(initialize_encoder(stream, &global)); -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (strcmp(global.codec->name, "vp9") == 0 || strcmp(global.codec->name, "vp10") == 0) { // Check to see if at least one stream uses 16 bit internal. @@ -2093,7 +2093,7 @@ frame_avail = 0; if (frames_in > global.skip_frames) { -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH vpx_image_t *frame_to_encode; if (input_shift || (use_16bit_internal && input.bit_depth == 8)) { assert(use_16bit_internal); @@ -2254,7 +2254,7 @@ }); #endif -#if CONFIG_VP9_HIGHBITDEPTH +#if CONFIG_VPX_HIGHBITDEPTH if (allocated_raw_shift) vpx_img_free(&raw_shift); #endif