// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/parsers/temporal_scalability_id_extractor.h" #include "media/parsers/vp9_parser.h" #include "testing/gtest/include/gtest/gtest.h" namespace media { bytes; TEST(TemporalScalabilityIdExtractorTest, AssignTemporalIdBySvcSpec_2layers) { … } TEST(TemporalScalabilityIdExtractorTest, AssignTemporalIdBySvcSpec_3layers) { … } // `frame_id` doesn't matter, `temporal_id` is populated from the stream TEST(TemporalScalabilityIdExtractorTest, H264_SvcHeaders) { … } // Bitstream is corrupted, `temporal_id` is populated from `frame_id` TEST(TemporalScalabilityIdExtractorTest, H264_CorruptedStream) { … } } // namespace media