// Copyright 2022 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/cast/encoding/encoding_support.h" #include <stdint.h> #include "base/no_destructor.h" #include "build/build_config.h" #include "media/base/media_switches.h" #include "testing/gtest/include/gtest/gtest.h" namespace media::cast::encoding_support { namespace { std::vector<media::VideoEncodeAccelerator::SupportedProfile> GetValidProfiles() { … } } // namespace TEST(EncodingSupportTest, EnablesVp8HardwareEncoderAlways) { … } TEST(EncodingSupportTest, EnablesH264HardwareEncoderProperly) { … } } // namespace media::cast::encoding_support