// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_AUDIO_TEST_DATA_H_ #define MEDIA_AUDIO_TEST_DATA_H_ namespace media { const char kTestAudioData[] = …; const size_t kTestAudioDataSize = …; // Extensible format with 48kHz rate stereo 32 bit float samples const char kTestFloatAudioData[] = …; const size_t kTestFloatAudioDataSize = …; // Extensible format with 48kHz rate stereo 32 bit PCM samples const char kTestExtensibleAudioData[] = …; const size_t kTestExtensibleAudioDataSize = …; } // namespace media #endif // MEDIA_AUDIO_TEST_DATA_H_