chromium/media/base/supported_types_unittest.cc

// Copyright 2017 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/base/supported_types.h"

#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "media/base/media_switches.h"
#include "media/mojo/buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"

#if BUILDFLAG(IS_ANDROID)
#include "base/android/build_info.h"
#endif

#if BUILDFLAG(IS_WIN)
#include "base/win/windows_version.h"
#endif

namespace media {

#if BUILDFLAG(USE_PROPRIETARY_CODECS)
const bool kPropCodecsEnabled = true;
#else
const bool kPropCodecsEnabled =;
#endif

TEST(SupportedTypesTest, IsSupportedVideoTypeBasics) {}

TEST(SupportedTypesTest, IsSupportedVideoType_VP9TransferFunctions) {}

TEST(SupportedTypesTest, IsSupportedVideoType_VP9Primaries) {}

TEST(SupportedTypesTest, IsSupportedVideoType_VP9Matrix) {}

TEST(SupportedTypesTest, IsSupportedVideoType_VP9Profiles) {}

TEST(SupportedTypesTest, IsSupportedAudioTypeWithSpatialRenderingBasics) {}

TEST(SupportedTypesTest, XHE_AACSupported) {}

TEST(SupportedTypesTest, IsSupportedVideoTypeWithHdrMetadataBasics) {}

TEST(SupportedTypesTest, IsBuiltInVideoCodec) {}
}  // namespace media