OLD | NEW |
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
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]; | |
104 | 103 |
105 private: | 104 private: |
| 105 static const CodecSettings codec_settings_[kMaxNumCodecs]; |
106 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs]; | 106 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs]; |
107 | 107 |
108 friend class RentACodec; | 108 friend class RentACodec; |
109 }; | 109 }; |
110 | 110 |
111 } // namespace acm2 | 111 } // namespace acm2 |
112 | 112 |
113 } // namespace webrtc | 113 } // namespace webrtc |
114 | 114 |
115 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_ | 115 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_ |
OLD | NEW |