chromium/media/base/audio_parameters_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "media/base/audio_parameters.h"

#include <stddef.h>

#include "base/strings/string_number_conversions.h"
#include "media/base/channel_layout.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

TEST(AudioParameters, Constructor_Default) {}

TEST(AudioParameters, Constructor_ParameterValues) {}

TEST(AudioParameters, Constructor_ParameterValuesPlusHardwareCapabilities) {}

TEST(AudioParameters, GetBytesPerBuffer) {}

TEST(AudioParameters, Compare) {}

TEST(AudioParameters, Constructor_ValidChannelCounts) {}

TEST(AudioParameters, Constructor_ValidChannelCountsFor514Downmix) {}

TEST(AudioParameters, Constructor_CopyChannelLayoutConfig) {}

TEST(AudioParameters, ShouldCheckDiscreteWithNoChannels) {}

TEST(AudioParameters, ChannelLayoutConfig_Guess) {}

TEST(AudioParameters, ChannelLayoutConfig_GuessUnsupported) {}

}  // namespace media