#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "media/base/channel_mixing_matrix.h"
#include <stddef.h>
#include "base/strings/stringprintf.h"
#include "media/base/channel_mixer.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
TEST(ChannelMixingMatrixTest, ConstructAllPossibleLayouts) { … }
TEST(ChannelMixingMatrixTest, StereoToMono) { … }
TEST(ChannelMixingMatrixTest, StereoTo1Point1) { … }
TEST(ChannelMixingMatrixTest, MonoToStereo) { … }
TEST(ChannelMixingMatrixTest, 1Point1ToStereo) { … }
TEST(ChannelMixingMatrixTest, MonoTo5Point1) { … }
TEST(ChannelMixingMatrixTest, 1Point1To5Point1) { … }
TEST(ChannelMixingMatrixTest, 5Point1ToMono) { … }
TEST(ChannelMixingMatrixTest, 5Point1To1Point1) { … }
TEST(ChannelMixingMatrixTest, DiscreteToDiscrete) { … }
}