With this changes users can calculate the corruption score on two frames e.g. in test scenarios where one has access to the input and output file. Bug: webrtc:358039777 Change-Id: Id864010115aa040284ec09b42d0279ccb45960b9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/364161 Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Fanny Linderborg <linderborg@webrtc.org> Commit-Queue: Emil Vardar (xWF) <vardar@google.com> Cr-Commit-Position: refs/heads/main@{#43222}
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/*
|
|
* Copyright 2024 The WebRTC project authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "video/corruption_detection/utils.h"
|
|
|
|
#include "api/video/video_codec_type.h"
|
|
#include "test/gmock.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
namespace {
|
|
|
|
#if GTEST_HAS_DEATH_TEST
|
|
using ::testing::_;
|
|
#endif // GTEST_HAS_DEATH_TEST
|
|
|
|
TEST(UtilsTest, FindCodecFromString) {
|
|
EXPECT_EQ(GetVideoCodecType(/*codec_name=*/"VP8"), kVideoCodecVP8);
|
|
EXPECT_EQ(GetVideoCodecType(/*codec_name=*/"libvpx-vp9"), kVideoCodecVP9);
|
|
EXPECT_EQ(GetVideoCodecType(/*codec_name=*/"ImprovedAV1"), kVideoCodecAV1);
|
|
EXPECT_EQ(GetVideoCodecType(/*codec_name=*/"lets_use_h264"), kVideoCodecH264);
|
|
}
|
|
|
|
#if GTEST_HAS_DEATH_TEST
|
|
TEST(UtilsTest, IfCodecDoesNotExistRaiseError) {
|
|
EXPECT_DEATH(GetVideoCodecType(/*codec_name=*/"Not_a_codec"), _);
|
|
}
|
|
#endif // GTEST_HAS_DEATH_TEST
|
|
|
|
} // namespace
|
|
} // namespace webrtc
|