Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: media/cast/receiver/audio_decoder_unittest.cc

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/cast/receiver/audio_decoder.cc ('k') | media/cast/receiver/cast_receiver_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stddef.h>
6 #include <stdint.h>
7
5 #include "base/bind.h" 8 #include "base/bind.h"
6 #include "base/bind_helpers.h" 9 #include "base/bind_helpers.h"
10 #include "base/macros.h"
7 #include "base/synchronization/condition_variable.h" 11 #include "base/synchronization/condition_variable.h"
8 #include "base/synchronization/lock.h" 12 #include "base/synchronization/lock.h"
9 #include "base/sys_byteorder.h" 13 #include "base/sys_byteorder.h"
10 #include "base/time/time.h" 14 #include "base/time/time.h"
11 #include "media/cast/cast_config.h" 15 #include "media/cast/cast_config.h"
12 #include "media/cast/receiver/audio_decoder.h" 16 #include "media/cast/receiver/audio_decoder.h"
13 #include "media/cast/test/utility/audio_utility.h" 17 #include "media/cast/test/utility/audio_utility.h"
14 #include "media/cast/test/utility/standalone_cast_environment.h" 18 #include "media/cast/test/utility/standalone_cast_environment.h"
15 #include "testing/gtest/include/gtest/gtest.h" 19 #include "testing/gtest/include/gtest/gtest.h"
16 #include "third_party/opus/src/include/opus.h" 20 #include "third_party/opus/src/include/opus.h"
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 AudioDecoderTestScenarios, 242 AudioDecoderTestScenarios,
239 AudioDecoderTest, 243 AudioDecoderTest,
240 ::testing::Values( 244 ::testing::Values(
241 TestScenario(CODEC_AUDIO_PCM16, 1, 8000), 245 TestScenario(CODEC_AUDIO_PCM16, 1, 8000),
242 TestScenario(CODEC_AUDIO_PCM16, 2, 48000), 246 TestScenario(CODEC_AUDIO_PCM16, 2, 48000),
243 TestScenario(CODEC_AUDIO_OPUS, 1, 8000), 247 TestScenario(CODEC_AUDIO_OPUS, 1, 8000),
244 TestScenario(CODEC_AUDIO_OPUS, 2, 48000))); 248 TestScenario(CODEC_AUDIO_OPUS, 2, 48000)));
245 249
246 } // namespace cast 250 } // namespace cast
247 } // namespace media 251 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/receiver/audio_decoder.cc ('k') | media/cast/receiver/cast_receiver_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698