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

Side by Side Diff: components/copresence/public/copresence_constants.h

Issue 419073002: Add the copresence DirectiveHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(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_PUBLIC_COPRESENCE_CONSTANTS_
6 #define COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CONSTANTS_
7
8 #include "media/base/channel_layout.h"
9
10 namespace copresence {
11
12 // Audio constants. Currently used from the AudioPlayer/AudioRecorder.
13 // TODO(rkc): Make these values configurable then remove them from here.
14 // Number of repetitions of the audio token in one sequence of samples.
15 extern const int kDefaultRepetitions;
16
17 // The default sample rate. We need to ensure that both the recorder and the
18 // player on _all platforms use the same rate.
19 extern const float kDefaultSampleRate;
20 extern const int kDefaultBitsPerSample;
21
22 // 18500 for ultrasound, needs to be consistent between platforms.
23 extern const float kDefaultCarrierFrequency;
24
25 // The next two really need to be configurable since they don't need to be
26 // consistent across platforms, or even playing/recording.
27 extern const int kDefaultChannels;
28 extern const media::ChannelLayout kDefaultChannelLayout;
29
30 } // namespace copresence
31
32 #endif // COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CONSTANTS_
OLDNEW
« no previous file with comments | « components/copresence/mediums/audio/audio_recorder_unittest.cc ('k') | components/copresence/test/audio_test_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698