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

Side by Side Diff: webrtc/modules/audio_coding/main/acm2/acm_codec_database.h

Issue 1424083002: Make an enum class out of NetEqDecoder, and hide the neteq_decoders_ table (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 1 month 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/audio_coding/main/acm2/acm_codec_database.cc » ('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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // Databases with information about the supported codecs 94 // Databases with information about the supported codecs
95 // database_ - stored information about all codecs: payload type, name, 95 // database_ - stored information about all codecs: payload type, name,
96 // sampling frequency, packet size in samples, default channel 96 // sampling frequency, packet size in samples, default channel
97 // support, and default rate. 97 // support, and default rate.
98 // codec_settings_ - stored codec settings: number of allowed packet sizes, 98 // codec_settings_ - stored codec settings: number of allowed packet sizes,
99 // a vector with the allowed packet sizes, basic block 99 // a vector with the allowed packet sizes, basic block
100 // samples, and max number of channels that are supported. 100 // samples, and max number of channels that are supported.
101 // neteq_decoders_ - list of supported decoders in NetEQ. 101 // neteq_decoders_ - list of supported decoders in NetEQ.
102 static const CodecInst database_[kMaxNumCodecs]; 102 static const CodecInst database_[kMaxNumCodecs];
103 static const CodecSettings codec_settings_[kMaxNumCodecs]; 103 static const CodecSettings codec_settings_[kMaxNumCodecs];
104
105 private:
104 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs]; 106 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs];
107
108 friend class RentACodec;
105 }; 109 };
106 110
107 } // namespace acm2 111 } // namespace acm2
108 112
109 } // namespace webrtc 113 } // namespace webrtc
110 114
111 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_ 115 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/main/acm2/acm_codec_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698