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

Side by Side Diff: webrtc/modules/audio_coding/main/interface/audio_coding_module_typedefs.h

Issue 1360173003: Remove last use of ACMAMRPackingFormat (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@util-codec-remove-amr
Patch Set: Created 5 years, 2 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 | « no previous file | webrtc/modules/utility/interface/file_recorder.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 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 17 matching lines...) Expand all
28 // -VADVeryAggr : the most agressive mode. 28 // -VADVeryAggr : the most agressive mode.
29 // 29 //
30 enum ACMVADMode { 30 enum ACMVADMode {
31 VADNormal = 0, 31 VADNormal = 0,
32 VADLowBitrate = 1, 32 VADLowBitrate = 1,
33 VADAggr = 2, 33 VADAggr = 2,
34 VADVeryAggr = 3 34 VADVeryAggr = 3
35 }; 35 };
36 36
37 /////////////////////////////////////////////////////////////////////////// 37 ///////////////////////////////////////////////////////////////////////////
38 // enum ACMAMRPackingFormat
39 // An enumerator for different bit-packing format of AMR codec according to
40 // RFC 3267.
41 //
42 // -AMRUndefined : undefined.
43 // -AMRBandwidthEfficient : bandwidth-efficient mode.
44 // -AMROctetAlligned : Octet-alligned mode.
45 // -AMRFileStorage : file-storage mode.
46 //
47 // TODO(henrik.lundin) Remove; only referenced in file_recorder, but all use
48 // is no-op.
49 enum ACMAMRPackingFormat {
50 AMRUndefined = -1,
51 AMRBandwidthEfficient = 0,
52 AMROctetAlligned = 1,
53 AMRFileStorage = 2
54 };
55
56 ///////////////////////////////////////////////////////////////////////////
57 // 38 //
58 // Enumeration of Opus mode for intended application. 39 // Enumeration of Opus mode for intended application.
59 // 40 //
60 // kVoip : optimized for voice signals. 41 // kVoip : optimized for voice signals.
61 // kAudio : optimized for non-voice signals like music. 42 // kAudio : optimized for non-voice signals like music.
62 // 43 //
63 enum OpusApplicationMode { 44 enum OpusApplicationMode {
64 kVoip = 0, 45 kVoip = 0,
65 kAudio = 1, 46 kAudio = 1,
66 }; 47 };
67 48
68 } // namespace webrtc 49 } // namespace webrtc
69 50
70 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_INTERFACE_AUDIO_CODING_MODULE_TYPEDE FS_H_ 51 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_INTERFACE_AUDIO_CODING_MODULE_TYPEDE FS_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/utility/interface/file_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698