chromium/third_party/webrtc/modules/rtp_rtcp/source/rtp_video_header_unittest.cc

/*
 *  Copyright (c) 2022 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 "modules/rtp_rtcp/source/rtp_video_header.h"

#include "api/video/video_frame_metadata.h"
#include "api/video/video_frame_type.h"
#include "test/gmock.h"
#include "test/gtest.h"

namespace webrtc {
namespace {

ElementsAre;
IsEmpty;

TEST(RTPVideoHeaderTest, FrameType_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, FrameType_FromMetadata) {}

TEST(RTPVideoHeaderTest, Width_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, Width_FromMetadata) {}

TEST(RTPVideoHeaderTest, Height_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, Height_FromMetadata) {}

TEST(RTPVideoHeaderTest, Rotation_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, Rotation_FromMetadata) {}

TEST(RTPVideoHeaderTest, ContentType_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, ContentType_FromMetadata) {}

TEST(RTPVideoHeaderTest, FrameId_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, FrameId_GetAsMetadataWhenGenericIsMissing) {}

TEST(RTPVideoHeaderTest, FrameId_FromMetadata) {}

TEST(RTPVideoHeaderTest, FrameId_FromMetadataWhenFrameIdIsMissing) {}

TEST(RTPVideoHeaderTest, SpatialIndex_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, SpatialIndex_GetAsMetadataWhenGenericIsMissing) {}

TEST(RTPVideoHeaderTest, SpatialIndex_FromMetadata) {}

TEST(RTPVideoHeaderTest, TemporalIndex_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, TemporalIndex_GetAsMetadataWhenGenericIsMissing) {}

TEST(RTPVideoHeaderTest, TemporalIndex_FromMetadata) {}

TEST(RTPVideoHeaderTest, FrameDependencies_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, FrameDependency_GetAsMetadataWhenGenericIsMissing) {}

TEST(RTPVideoHeaderTest, FrameDependencies_FromMetadata) {}

TEST(RTPVideoHeaderTest, DecodeTargetIndications_GetAsMetadata) {}

TEST(RTPVideoHeaderTest,
     DecodeTargetIndications_GetAsMetadataWhenGenericIsMissing) {}

TEST(RTPVideoHeaderTest, DecodeTargetIndications_FromMetadata) {}

TEST(RTPVideoHeaderTest, IsLastFrameInPicture_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, IsLastFrameInPicture_FromMetadata) {}

TEST(RTPVideoHeaderTest, SimulcastIdx_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, SimulcastIdx_FromMetadata) {}

TEST(RTPVideoHeaderTest, Codec_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, Codec_FromMetadata) {}

TEST(RTPVideoHeaderTest, RTPVideoHeaderCodecSpecifics_GetAsMetadata) {}

TEST(RTPVideoHeaderTest, RTPVideoHeaderCodecSpecifics_FromMetadata) {}

}  // namespace
}  // namespace webrtc