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

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

Issue 1425233003: Hide ACMCodecDB::database_ behind accessors (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@rac-static
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // Return: 84 // Return:
85 // codec sampling frequency if successful, otherwise -1. 85 // codec sampling frequency if successful, otherwise -1.
86 static int CodecFreq(int codec_id); 86 static int CodecFreq(int codec_id);
87 87
88 // Check if the payload type is valid, meaning that it is in the valid range 88 // Check if the payload type is valid, meaning that it is in the valid range
89 // of 0 to 127. 89 // of 0 to 127.
90 // Input: 90 // Input:
91 // [payload_type] - payload type. 91 // [payload_type] - payload type.
92 static bool ValidPayloadType(int payload_type); 92 static bool ValidPayloadType(int payload_type);
93 93
94 private:
94 // Databases with information about the supported codecs 95 // Databases with information about the supported codecs
95 // database_ - stored information about all codecs: payload type, name, 96 // database_ - stored information about all codecs: payload type, name,
96 // sampling frequency, packet size in samples, default channel 97 // sampling frequency, packet size in samples, default channel
97 // support, and default rate. 98 // support, and default rate.
98 // codec_settings_ - stored codec settings: number of allowed packet sizes, 99 // codec_settings_ - stored codec settings: number of allowed packet sizes,
99 // a vector with the allowed packet sizes, basic block 100 // a vector with the allowed packet sizes, basic block
100 // samples, and max number of channels that are supported. 101 // samples, and max number of channels that are supported.
101 // neteq_decoders_ - list of supported decoders in NetEQ. 102 // neteq_decoders_ - list of supported decoders in NetEQ.
102 static const CodecInst database_[kMaxNumCodecs]; 103 static const CodecInst database_[kMaxNumCodecs];
103
104 private:
105 static const CodecSettings codec_settings_[kMaxNumCodecs]; 104 static const CodecSettings codec_settings_[kMaxNumCodecs];
106 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs]; 105 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs];
107 106
108 friend class RentACodec; 107 friend class RentACodec;
109 }; 108 };
110 109
111 } // namespace acm2 110 } // namespace acm2
112 111
113 } // namespace webrtc 112 } // namespace webrtc
114 113
115 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_ 114 #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