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

Side by Side Diff: webrtc/modules/audio_device/test/func_test_manager.cc

Issue 1238083005: [NOT FOR REVIEW] Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@size_t
Patch Set: Checkpoint Created 5 years, 4 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) 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 iter != _audioList.end(); ++iter) { 187 iter != _audioList.end(); ++iter) {
188 delete *iter; 188 delete *iter;
189 } 189 }
190 _audioList.clear(); 190 _audioList.clear();
191 } 191 }
192 192
193 int32_t AudioTransportImpl::RecordedDataIsAvailable( 193 int32_t AudioTransportImpl::RecordedDataIsAvailable(
194 const void* audioSamples, 194 const void* audioSamples,
195 const size_t nSamples, 195 const size_t nSamples,
196 const size_t nBytesPerSample, 196 const size_t nBytesPerSample,
197 const uint8_t nChannels, 197 const size_t nChannels,
198 const uint32_t samplesPerSec, 198 const uint32_t samplesPerSec,
199 const uint32_t totalDelayMS, 199 const uint32_t totalDelayMS,
200 const int32_t clockDrift, 200 const int32_t clockDrift,
201 const uint32_t currentMicLevel, 201 const uint32_t currentMicLevel,
202 const bool keyPressed, 202 const bool keyPressed,
203 uint32_t& newMicLevel) 203 uint32_t& newMicLevel)
204 { 204 {
205 if (_fullDuplex && _audioList.size() < 15) 205 if (_fullDuplex && _audioList.size() < 15)
206 { 206 {
207 AudioPacket* packet = new AudioPacket(); 207 AudioPacket* packet = new AudioPacket();
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 } 332 }
333 } 333 }
334 334
335 return 0; 335 return 0;
336 } 336 }
337 337
338 338
339 int32_t AudioTransportImpl::NeedMorePlayData( 339 int32_t AudioTransportImpl::NeedMorePlayData(
340 const size_t nSamples, 340 const size_t nSamples,
341 const size_t nBytesPerSample, 341 const size_t nBytesPerSample,
342 const uint8_t nChannels, 342 const size_t nChannels,
343 const uint32_t samplesPerSec, 343 const uint32_t samplesPerSec,
344 void* audioSamples, 344 void* audioSamples,
345 size_t& nSamplesOut, 345 size_t& nSamplesOut,
346 int64_t* elapsed_time_ms, 346 int64_t* elapsed_time_ms,
347 int64_t* ntp_time_ms) 347 int64_t* ntp_time_ms)
348 { 348 {
349 if (_fullDuplex) 349 if (_fullDuplex)
350 { 350 {
351 if (_audioList.empty()) 351 if (_audioList.empty())
352 { 352 {
353 // use zero stuffing when not enough data 353 // use zero stuffing when not enough data
354 memset(audioSamples, 0, nBytesPerSample * nSamples); 354 memset(audioSamples, 0, nBytesPerSample * nSamples);
355 } else 355 } else
356 { 356 {
357 AudioPacket* packet = _audioList.front(); 357 AudioPacket* packet = _audioList.front();
358 _audioList.pop_front(); 358 _audioList.pop_front();
359 if (packet) 359 if (packet)
360 { 360 {
361 int ret(0); 361 int ret(0);
362 size_t lenOut(0); 362 size_t lenOut(0);
363 int16_t tmpBuf_96kHz[80 * 12]; 363 int16_t tmpBuf_96kHz[80 * 12];
364 int16_t* ptr16In = NULL; 364 int16_t* ptr16In = NULL;
365 int16_t* ptr16Out = NULL; 365 int16_t* ptr16Out = NULL;
366 366
367 const size_t nSamplesIn = packet->nSamples; 367 const size_t nSamplesIn = packet->nSamples;
368 const uint8_t nChannelsIn = packet->nChannels; 368 const size_t nChannelsIn = packet->nChannels;
369 const uint32_t samplesPerSecIn = packet->samplesPerSec; 369 const uint32_t samplesPerSecIn = packet->samplesPerSec;
370 const size_t nBytesPerSampleIn = packet->nBytesPerSample; 370 const size_t nBytesPerSampleIn = packet->nBytesPerSample;
371 371
372 int32_t fsInHz(samplesPerSecIn); 372 int32_t fsInHz(samplesPerSecIn);
373 int32_t fsOutHz(samplesPerSec); 373 int32_t fsOutHz(samplesPerSec);
374 374
375 if (fsInHz == 44100) 375 if (fsInHz == 44100)
376 fsInHz = 44000; 376 fsInHz = 44000;
377 377
378 if (fsOutHz == 44100) 378 if (fsOutHz == 44100)
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 { 566 {
567 TEST_LOG("++"); 567 TEST_LOG("++");
568 } 568 }
569 } // if (_playCount % 100 == 0) 569 } // if (_playCount % 100 == 0)
570 570
571 nSamplesOut = nSamples; 571 nSamplesOut = nSamples;
572 572
573 return 0; 573 return 0;
574 } 574 }
575 575
576 int AudioTransportImpl::OnDataAvailable(const int voe_channels[],
577 int number_of_voe_channels,
578 const int16_t* audio_data,
579 int sample_rate,
580 int number_of_channels,
581 size_t number_of_frames,
582 int audio_delay_milliseconds,
583 int current_volume,
584 bool key_pressed,
585 bool need_audio_processing) {
586 return 0;
587 }
588
589 void AudioTransportImpl::PushCaptureData(int voe_channel,
590 const void* audio_data,
591 int bits_per_sample, int sample_rate,
592 int number_of_channels,
593 size_t number_of_frames) {}
594
595 void AudioTransportImpl::PullRenderData(int bits_per_sample, int sample_rate,
596 int number_of_channels,
597 size_t number_of_frames,
598 void* audio_data,
599 int64_t* elapsed_time_ms,
600 int64_t* ntp_time_ms) {}
601
602 FuncTestManager::FuncTestManager() : 576 FuncTestManager::FuncTestManager() :
603 _audioDevice(NULL), 577 _audioDevice(NULL),
604 _audioEventObserver(NULL), 578 _audioEventObserver(NULL),
605 _audioTransport(NULL) 579 _audioTransport(NULL)
606 { 580 {
607 _playoutFile48 = webrtc::test::ResourcePath("audio_device\\audio_short48", 581 _playoutFile48 = webrtc::test::ResourcePath("audio_device\\audio_short48",
608 "pcm"); 582 "pcm");
609 _playoutFile44 = webrtc::test::ResourcePath("audio_device\\audio_short44", 583 _playoutFile44 = webrtc::test::ResourcePath("audio_device\\audio_short44",
610 "pcm"); 584 "pcm");
611 _playoutFile16 = webrtc::test::ResourcePath("audio_device\\audio_short16", 585 _playoutFile16 = webrtc::test::ResourcePath("audio_device\\audio_short16",
(...skipping 2150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2762 2736
2763 TEST_LOG("\n"); 2737 TEST_LOG("\n");
2764 PRINT_TEST_RESULTS; 2738 PRINT_TEST_RESULTS;
2765 2739
2766 return 0; 2740 return 0;
2767 } 2741 }
2768 2742
2769 } // namespace webrtc 2743 } // namespace webrtc
2770 2744
2771 // EOF 2745 // EOF
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/test/func_test_manager.h ('k') | webrtc/modules/audio_processing/audio_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698