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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 237 |
238 std::vector<uint16_t> GetNackList(int64_t round_trip_time_ms) const override; | 238 std::vector<uint16_t> GetNackList(int64_t round_trip_time_ms) const override; |
239 | 239 |
240 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const override; | 240 void GetDecodingCallStatistics(AudioDecodingCallStats* stats) const override; |
241 | 241 |
242 private: | 242 private: |
243 struct InputData { | 243 struct InputData { |
244 uint32_t input_timestamp; | 244 uint32_t input_timestamp; |
245 const int16_t* audio; | 245 const int16_t* audio; |
246 size_t length_per_channel; | 246 size_t length_per_channel; |
247 uint8_t audio_channel; | 247 size_t audio_channel; |
248 // If a re-mix is required (up or down), this buffer will store a re-mixed | 248 // If a re-mix is required (up or down), this buffer will store a re-mixed |
249 // version of the input. | 249 // version of the input. |
250 int16_t buffer[WEBRTC_10MS_PCM_AUDIO]; | 250 int16_t buffer[WEBRTC_10MS_PCM_AUDIO]; |
251 }; | 251 }; |
252 | 252 |
253 // This member class writes values to the named UMA histogram, but only if | 253 // This member class writes values to the named UMA histogram, but only if |
254 // the value has changed since the last time (and always for the first call). | 254 // the value has changed since the last time (and always for the first call). |
255 class ChangeLogger { | 255 class ChangeLogger { |
256 public: | 256 public: |
257 explicit ChangeLogger(const std::string& histogram_name) | 257 explicit ChangeLogger(const std::string& histogram_name) |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 AudioDecodingCallStats* call_stats) const override; | 388 AudioDecodingCallStats* call_stats) const override; |
389 | 389 |
390 private: | 390 private: |
391 // Temporary method to be used during redesign phase. | 391 // Temporary method to be used during redesign phase. |
392 // Maps |codec_type| (a value from the anonymous enum in acm2::ACMCodecDB) to | 392 // Maps |codec_type| (a value from the anonymous enum in acm2::ACMCodecDB) to |
393 // |codec_name|, |sample_rate_hz|, and |channels|. | 393 // |codec_name|, |sample_rate_hz|, and |channels|. |
394 // TODO(henrik.lundin) Remove this when no longer needed. | 394 // TODO(henrik.lundin) Remove this when no longer needed. |
395 static bool MapCodecTypeToParameters(int codec_type, | 395 static bool MapCodecTypeToParameters(int codec_type, |
396 std::string* codec_name, | 396 std::string* codec_name, |
397 int* sample_rate_hz, | 397 int* sample_rate_hz, |
398 int* channels); | 398 size_t* channels); |
399 | 399 |
400 int playout_frequency_hz_; | 400 int playout_frequency_hz_; |
401 // TODO(henrik.lundin): All members below this line are temporary and should | 401 // TODO(henrik.lundin): All members below this line are temporary and should |
402 // be removed after refactoring is completed. | 402 // be removed after refactoring is completed. |
403 rtc::scoped_ptr<acm2::AudioCodingModuleImpl> acm_old_; | 403 rtc::scoped_ptr<acm2::AudioCodingModuleImpl> acm_old_; |
404 CodecInst current_send_codec_; | 404 CodecInst current_send_codec_; |
405 }; | 405 }; |
406 | 406 |
407 } // namespace webrtc | 407 } // namespace webrtc |
408 | 408 |
409 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_AUDIO_CODING_MODULE_IMPL_H_ | 409 #endif // WEBRTC_MODULES_AUDIO_CODING_MAIN_ACM2_AUDIO_CODING_MODULE_IMPL_H_ |
OLD | NEW |