OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_COPRESENCE_COMMON_COPRESENCE_CONSTANTS_ | |
6 #define COMPONENTS_COPRESENCE_COMMON_COPRESENCE_CONSTANTS_ | |
7 | |
8 #include "media/base/channel_layout.h" | |
9 | |
10 namespace copresence { | |
11 | |
12 extern const int kDefaultRepetitions; | |
Daniel Erat
2014/07/25 23:09:00
nit: add a brief comment documenting what each of
rkc
2014/07/28 21:01:59
We eventually want to make these values configurab
| |
13 extern const float kDefaultSampleRate; | |
14 extern const int kDefaultBitsPerSample; | |
15 extern const float kDefaultCarrierFrequency; | |
16 extern const int kDefaultChannels; | |
17 extern const media::ChannelLayout kDefaultChannelLayout; | |
18 | |
19 } // namespace copresence | |
20 | |
21 #endif // COMPONENTS_COPRESENCE_COMMON_COPRESENCE_CONSTANTS_ | |
OLD | NEW |