Add tracing to NetEqImpl::GetAudio

BUG=webrtc:5167
R=pbos@webrtc.org
NOTRY=true

Review URL: https://codereview.webrtc.org/1571693002

Cr-Commit-Position: refs/heads/master@{#11183}
This commit is contained in:
henrik.lundin
2016-01-08 03:50:08 -08:00
committed by Commit bot
parent ec80f03b3c
commit e1ca167217

View File

@ -153,6 +153,7 @@ int NetEqImpl::InsertSyncPacket(const WebRtcRTPHeader& rtp_header,
int NetEqImpl::GetAudio(size_t max_length, int16_t* output_audio, int NetEqImpl::GetAudio(size_t max_length, int16_t* output_audio,
size_t* samples_per_channel, int* num_channels, size_t* samples_per_channel, int* num_channels,
NetEqOutputType* type) { NetEqOutputType* type) {
TRACE_EVENT0("webrtc", "NetEqImpl::GetAudio");
CriticalSectionScoped lock(crit_sect_.get()); CriticalSectionScoped lock(crit_sect_.get());
int error = GetAudioInternal(max_length, output_audio, samples_per_channel, int error = GetAudioInternal(max_length, output_audio, samples_per_channel,
num_channels); num_channels);