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

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

Issue 1430043003: Move ACMCodecDB::ValidPayloadType to RentACodec (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // database. 78 // database.
79 // TODO(tlegrand): Check if function is needed, or if we can change 79 // TODO(tlegrand): Check if function is needed, or if we can change
80 // to access database directly. 80 // to access database directly.
81 // Input: 81 // Input:
82 // [codec_id] - number that specifies at what position in the database to 82 // [codec_id] - number that specifies at what position in the database to
83 // get the information. 83 // get the information.
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
89 // of 0 to 127.
90 // Input:
91 // [payload_type] - payload type.
92 static bool ValidPayloadType(int payload_type);
93
94 private: 88 private:
95 // Databases with information about the supported codecs 89 // Databases with information about the supported codecs
96 // database_ - stored information about all codecs: payload type, name, 90 // database_ - stored information about all codecs: payload type, name,
97 // sampling frequency, packet size in samples, default channel 91 // sampling frequency, packet size in samples, default channel
98 // support, and default rate. 92 // support, and default rate.
99 // codec_settings_ - stored codec settings: number of allowed packet sizes, 93 // codec_settings_ - stored codec settings: number of allowed packet sizes,
100 // a vector with the allowed packet sizes, basic block 94 // a vector with the allowed packet sizes, basic block
101 // samples, and max number of channels that are supported. 95 // samples, and max number of channels that are supported.
102 // neteq_decoders_ - list of supported decoders in NetEQ. 96 // neteq_decoders_ - list of supported decoders in NetEQ.
103 static const CodecInst database_[kMaxNumCodecs]; 97 static const CodecInst database_[kMaxNumCodecs];
104 static const CodecSettings codec_settings_[kMaxNumCodecs]; 98 static const CodecSettings codec_settings_[kMaxNumCodecs];
105 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs]; 99 static const NetEqDecoder neteq_decoders_[kMaxNumCodecs];
106 100
107 friend class RentACodec; 101 friend class RentACodec;
108 }; 102 };
109 103
110 } // namespace acm2 104 } // namespace acm2
111 105
112 } // namespace webrtc 106 } // namespace webrtc
113 107
114 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_ACM_CODEC_DATABASE_H_ 108 #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