/* * Copyright (c) 2020, Alliance for Open Media. All rights reserved * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent. */ // Tests for https://crbug.com/aomedia/2777. // // Encode images with a small width (<= two AV1 superblocks) or a small height // (<= one AV1 superblock) with multiple threads. aom_codec_encode() should // not crash. #include #include "aom/aomcx.h" #include "aom/aom_encoder.h" #include "config/aom_config.h" #include "third_party/googletest/src/googletest/include/gtest/gtest.h" namespace { // Dummy buffer of zero samples. constexpr unsigned char kBuffer[256 * 512 + 2 * 128 * 256] = { 0 }; #if CONFIG_REALTIME_ONLY const int kUsage = 1; #else const int kUsage = 0; #endif TEST(EncodeSmallWidthHeight, SmallWidthMultiThreaded) { // The image has only one tile and the tile is two AV1 superblocks wide. // For speed >= 1, superblock size is 64x64 (see av1_select_sb_size()). constexpr int kWidth = 128; constexpr int kHeight = 512; aom_image_t img; EXPECT_EQ(&img, aom_img_wrap(&img, AOM_IMG_FMT_I420, kWidth, kHeight, 1, const_cast(kBuffer))); aom_codec_iface_t *iface = aom_codec_av1_cx(); aom_codec_enc_cfg_t cfg; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_config_default(iface, &cfg, kUsage)); cfg.g_threads = 2; cfg.g_w = kWidth; cfg.g_h = kHeight; aom_codec_ctx_t enc; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_init(&enc, iface, &cfg, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_control(&enc, AOME_SET_CPUUSED, 5)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, &img, 0, 1, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, nullptr, 0, 0, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_destroy(&enc)); } #if !CONFIG_REALTIME_ONLY TEST(EncodeSmallWidthHeight, SmallWidthMultiThreadedSpeed0) { // The image has only one tile and the tile is two AV1 superblocks wide. // For speed 0, superblock size is 128x128 (see av1_select_sb_size()). constexpr int kWidth = 256; constexpr int kHeight = 512; aom_image_t img; EXPECT_EQ(&img, aom_img_wrap(&img, AOM_IMG_FMT_I420, kWidth, kHeight, 1, const_cast(kBuffer))); aom_codec_iface_t *iface = aom_codec_av1_cx(); aom_codec_enc_cfg_t cfg; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_config_default(iface, &cfg, 0)); cfg.g_threads = 2; cfg.g_w = kWidth; cfg.g_h = kHeight; aom_codec_ctx_t enc; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_init(&enc, iface, &cfg, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_control(&enc, AOME_SET_CPUUSED, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, &img, 0, 1, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, nullptr, 0, 0, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_destroy(&enc)); } #endif TEST(EncodeSmallWidthHeight, SmallHeightMultiThreaded) { // The image has only one tile and the tile is one AV1 superblock tall. // For speed >= 1, superblock size is 64x64 (see av1_select_sb_size()). constexpr int kWidth = 512; constexpr int kHeight = 64; aom_image_t img; EXPECT_EQ(&img, aom_img_wrap(&img, AOM_IMG_FMT_I420, kWidth, kHeight, 1, const_cast(kBuffer))); aom_codec_iface_t *iface = aom_codec_av1_cx(); aom_codec_enc_cfg_t cfg; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_config_default(iface, &cfg, kUsage)); cfg.g_threads = 2; cfg.g_w = kWidth; cfg.g_h = kHeight; aom_codec_ctx_t enc; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_init(&enc, iface, &cfg, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_control(&enc, AOME_SET_CPUUSED, 5)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, &img, 0, 1, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, nullptr, 0, 0, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_destroy(&enc)); } #if !CONFIG_REALTIME_ONLY TEST(EncodeSmallWidthHeight, SmallHeightMultiThreadedSpeed0) { // The image has only one tile and the tile is one AV1 superblock tall. // For speed 0, superblock size is 128x128 (see av1_select_sb_size()). constexpr int kWidth = 512; constexpr int kHeight = 128; aom_image_t img; EXPECT_EQ(&img, aom_img_wrap(&img, AOM_IMG_FMT_I420, kWidth, kHeight, 1, const_cast(kBuffer))); aom_codec_iface_t *iface = aom_codec_av1_cx(); aom_codec_enc_cfg_t cfg; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_config_default(iface, &cfg, 0)); cfg.g_threads = 2; cfg.g_w = kWidth; cfg.g_h = kHeight; aom_codec_ctx_t enc; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_init(&enc, iface, &cfg, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_control(&enc, AOME_SET_CPUUSED, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, &img, 0, 1, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, nullptr, 0, 0, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_destroy(&enc)); } #endif // A reproducer test for aomedia:3113. The test should complete without any // memory errors. TEST(EncodeSmallWidthHeight, 1x1) { constexpr int kWidth = 1; constexpr int kHeight = 1; // This test cannot use aom_img_alloc() or aom_img_wrap() because they call // align_image_dimension() to align img.w and img.h to the next even number // (2). In this test it is important to set img.w and img.h to 1. Therefore we // set up img manually. aom_image_t img; memset(&img, 0, sizeof(img)); img.fmt = AOM_IMG_FMT_I420; img.bit_depth = 8; img.w = kWidth; img.h = kHeight; img.d_w = kWidth; img.d_h = kHeight; img.x_chroma_shift = 1; img.y_chroma_shift = 1; img.bps = 12; int y_stride = kWidth; int uv_stride = (kWidth + 1) >> 1; int y_height = kHeight; int uv_height = (kHeight + 1) >> 1; img.stride[AOM_PLANE_Y] = y_stride; img.stride[AOM_PLANE_U] = img.stride[AOM_PLANE_V] = uv_stride; std::unique_ptr y_plane( new unsigned char[y_height * y_stride]()); ASSERT_NE(y_plane, nullptr); std::unique_ptr u_plane( new unsigned char[uv_height * uv_stride]()); ASSERT_NE(u_plane, nullptr); std::unique_ptr v_plane( new unsigned char[uv_height * uv_stride]()); ASSERT_NE(v_plane, nullptr); img.planes[AOM_PLANE_Y] = y_plane.get(); img.planes[AOM_PLANE_U] = u_plane.get(); img.planes[AOM_PLANE_V] = v_plane.get(); aom_codec_iface_t *iface = aom_codec_av1_cx(); aom_codec_enc_cfg_t cfg; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_config_default(iface, &cfg, kUsage)); cfg.g_w = kWidth; cfg.g_h = kHeight; aom_codec_ctx_t enc; EXPECT_EQ(AOM_CODEC_OK, aom_codec_enc_init(&enc, iface, &cfg, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_control(&enc, AOME_SET_CPUUSED, 5)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, &img, 0, 1, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_encode(&enc, nullptr, 0, 0, 0)); EXPECT_EQ(AOM_CODEC_OK, aom_codec_destroy(&enc)); } } // namespace