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

Side by Side Diff: webrtc/modules/audio_coding/acm2/acm_receiver.h

Issue 1750353002: Change NetEq::GetAudio to use AudioFrame (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Taking care of review comments Created 4 years, 9 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 uint8_t payload_type) const 279 uint8_t payload_type) const
280 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 280 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
281 281
282 uint32_t NowInTimestamp(int decoder_sampling_rate) const; 282 uint32_t NowInTimestamp(int decoder_sampling_rate) const;
283 283
284 rtc::CriticalSection crit_sect_; 284 rtc::CriticalSection crit_sect_;
285 int id_; // TODO(henrik.lundin) Make const. 285 int id_; // TODO(henrik.lundin) Make const.
286 const Decoder* last_audio_decoder_ GUARDED_BY(crit_sect_); 286 const Decoder* last_audio_decoder_ GUARDED_BY(crit_sect_);
287 AudioFrame::VADActivity previous_audio_activity_ GUARDED_BY(crit_sect_); 287 AudioFrame::VADActivity previous_audio_activity_ GUARDED_BY(crit_sect_);
288 ACMResampler resampler_ GUARDED_BY(crit_sect_); 288 ACMResampler resampler_ GUARDED_BY(crit_sect_);
289 // Used in GetAudio, declared as member to avoid allocating every 10ms.
290 // TODO(henrik.lundin) Stack-allocate in GetAudio instead?
291 std::unique_ptr<int16_t[]> audio_buffer_ GUARDED_BY(crit_sect_);
292 std::unique_ptr<int16_t[]> last_audio_buffer_ GUARDED_BY(crit_sect_); 289 std::unique_ptr<int16_t[]> last_audio_buffer_ GUARDED_BY(crit_sect_);
293 CallStatistics call_stats_ GUARDED_BY(crit_sect_); 290 CallStatistics call_stats_ GUARDED_BY(crit_sect_);
294 NetEq* neteq_; 291 NetEq* neteq_;
295 // Decoders map is keyed by payload type 292 // Decoders map is keyed by payload type
296 std::map<uint8_t, Decoder> decoders_ GUARDED_BY(crit_sect_); 293 std::map<uint8_t, Decoder> decoders_ GUARDED_BY(crit_sect_);
297 bool vad_enabled_; 294 bool vad_enabled_;
298 Clock* clock_; // TODO(henrik.lundin) Make const if possible. 295 Clock* clock_; // TODO(henrik.lundin) Make const if possible.
299 bool resampled_last_output_frame_ GUARDED_BY(crit_sect_); 296 bool resampled_last_output_frame_ GUARDED_BY(crit_sect_);
300 rtc::Optional<int> last_packet_sample_rate_hz_ GUARDED_BY(crit_sect_); 297 rtc::Optional<int> last_packet_sample_rate_hz_ GUARDED_BY(crit_sect_);
301 }; 298 };
302 299
303 } // namespace acm2 300 } // namespace acm2
304 301
305 } // namespace webrtc 302 } // namespace webrtc
306 303
307 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_ACM_RECEIVER_H_ 304 #endif // WEBRTC_MODULES_AUDIO_CODING_ACM2_ACM_RECEIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698