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

Side by Side Diff: webrtc/modules/media_file/source/media_file_utility.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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "ModuleFileUtility::~ModuleFileUtility()"); 72 "ModuleFileUtility::~ModuleFileUtility()");
73 } 73 }
74 74
75 int32_t ModuleFileUtility::ReadWavHeader(InStream& wav) 75 int32_t ModuleFileUtility::ReadWavHeader(InStream& wav)
76 { 76 {
77 WAVE_RIFF_header RIFFheaderObj; 77 WAVE_RIFF_header RIFFheaderObj;
78 WAVE_CHUNK_header CHUNKheaderObj; 78 WAVE_CHUNK_header CHUNKheaderObj;
79 // TODO (hellner): tmpStr and tmpStr2 seems unnecessary here. 79 // TODO (hellner): tmpStr and tmpStr2 seems unnecessary here.
80 char tmpStr[6] = "FOUR"; 80 char tmpStr[6] = "FOUR";
81 unsigned char tmpStr2[4]; 81 unsigned char tmpStr2[4];
82 int32_t i, len; 82 int32_t i;
83 bool dataFound = false; 83 bool dataFound = false;
84 bool fmtFound = false; 84 bool fmtFound = false;
85 int8_t dummyRead; 85 int8_t dummyRead;
86 86
87 87
88 _dataSize = 0; 88 _dataSize = 0;
89 len = wav.Read(&RIFFheaderObj, sizeof(WAVE_RIFF_header)); 89 int len = wav.Read(&RIFFheaderObj, sizeof(WAVE_RIFF_header));
90 if(len != sizeof(WAVE_RIFF_header)) 90 if (len != static_cast<int>(sizeof(WAVE_RIFF_header)))
91 { 91 {
92 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 92 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
93 "Not a wave file (too short)"); 93 "Not a wave file (too short)");
94 return -1; 94 return -1;
95 } 95 }
96 96
97 for (i = 0; i < 4; i++) 97 for (i = 0; i < 4; i++)
98 { 98 {
99 tmpStr[i] = RIFFheaderObj.ckID[i]; 99 tmpStr[i] = RIFFheaderObj.ckID[i];
100 } 100 }
(...skipping 19 matching lines...) Expand all
120 // WAVE files are stored in little endian byte order. Make sure that the 120 // WAVE files are stored in little endian byte order. Make sure that the
121 // data can be read on big endian as well. 121 // data can be read on big endian as well.
122 // TODO (hellner): little endian to system byte order should be done in 122 // TODO (hellner): little endian to system byte order should be done in
123 // in a subroutine. 123 // in a subroutine.
124 memcpy(tmpStr2, &CHUNKheaderObj.fmt_ckSize, 4); 124 memcpy(tmpStr2, &CHUNKheaderObj.fmt_ckSize, 4);
125 CHUNKheaderObj.fmt_ckSize = 125 CHUNKheaderObj.fmt_ckSize =
126 (int32_t) ((uint32_t) tmpStr2[0] + 126 (int32_t) ((uint32_t) tmpStr2[0] +
127 (((uint32_t)tmpStr2[1])<<8) + 127 (((uint32_t)tmpStr2[1])<<8) +
128 (((uint32_t)tmpStr2[2])<<16) + 128 (((uint32_t)tmpStr2[2])<<16) +
129 (((uint32_t)tmpStr2[3])<<24)); 129 (((uint32_t)tmpStr2[3])<<24));
130 if (CHUNKheaderObj.fmt_ckSize < 0)
131 {
132 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
133 "Chunk size may not be negative");
134 return -1;
135 }
130 136
131 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4); 137 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4);
132 138
133 while ((len == sizeof(WAVE_CHUNK_header)) && (!fmtFound || !dataFound)) 139 while ((len == static_cast<int>(sizeof(WAVE_CHUNK_header))) &&
140 (!fmtFound || !dataFound))
134 { 141 {
135 if(strcmp(tmpStr, "fmt ") == 0) 142 if(strcmp(tmpStr, "fmt ") == 0)
136 { 143 {
137 len = wav.Read(&_wavFormatObj, sizeof(WAVE_FMTINFO_header)); 144 len = wav.Read(&_wavFormatObj, sizeof(WAVE_FMTINFO_header));
138 145
139 memcpy(tmpStr2, &_wavFormatObj.formatTag, 2); 146 memcpy(tmpStr2, &_wavFormatObj.formatTag, 2);
140 _wavFormatObj.formatTag = 147 _wavFormatObj.formatTag =
141 (uint32_t)tmpStr2[0] + (((uint32_t)tmpStr2[1])<<8); 148 (uint32_t)tmpStr2[0] + (((uint32_t)tmpStr2[1])<<8);
142 memcpy(tmpStr2, &_wavFormatObj.nChannels, 2); 149 memcpy(tmpStr2, &_wavFormatObj.nChannels, 2);
143 _wavFormatObj.nChannels = 150 _wavFormatObj.nChannels =
(...skipping 30 matching lines...) Expand all
174 { 181 {
175 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 182 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
176 "File corrupted, reached EOF (reading fmt)"); 183 "File corrupted, reached EOF (reading fmt)");
177 return -1; 184 return -1;
178 } 185 }
179 } 186 }
180 fmtFound = true; 187 fmtFound = true;
181 } 188 }
182 else if(strcmp(tmpStr, "data") == 0) 189 else if(strcmp(tmpStr, "data") == 0)
183 { 190 {
184 _dataSize = CHUNKheaderObj.fmt_ckSize; 191 _dataSize = static_cast<size_t>(CHUNKheaderObj.fmt_ckSize);
185 dataFound = true; 192 dataFound = true;
186 break; 193 break;
187 } 194 }
188 else 195 else
189 { 196 {
190 for (i = 0; i < (CHUNKheaderObj.fmt_ckSize); i++) 197 for (i = 0; i < (CHUNKheaderObj.fmt_ckSize); i++)
191 { 198 {
192 len = wav.Read(&dummyRead, 1); 199 len = wav.Read(&dummyRead, 1);
193 if(len != 1) 200 if(len != 1)
194 { 201 {
195 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 202 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
196 "File corrupted, reached EOF (reading other)"); 203 "File corrupted, reached EOF (reading other)");
197 return -1; 204 return -1;
198 } 205 }
199 } 206 }
200 } 207 }
201 208
202 len = wav.Read(&CHUNKheaderObj, sizeof(WAVE_CHUNK_header)); 209 len = wav.Read(&CHUNKheaderObj, sizeof(WAVE_CHUNK_header));
203 210
204 memcpy(tmpStr2, &CHUNKheaderObj.fmt_ckSize, 4); 211 memcpy(tmpStr2, &CHUNKheaderObj.fmt_ckSize, 4);
205 CHUNKheaderObj.fmt_ckSize = 212 CHUNKheaderObj.fmt_ckSize =
206 (int32_t) ((uint32_t)tmpStr2[0] + 213 (int32_t) ((uint32_t)tmpStr2[0] +
207 (((uint32_t)tmpStr2[1])<<8) + 214 (((uint32_t)tmpStr2[1])<<8) +
208 (((uint32_t)tmpStr2[2])<<16) + 215 (((uint32_t)tmpStr2[2])<<16) +
209 (((uint32_t)tmpStr2[3])<<24)); 216 (((uint32_t)tmpStr2[3])<<24));
217 if (CHUNKheaderObj.fmt_ckSize < 0)
218 {
219 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
220 "Chunk size may not be negative");
221 return -1;
222 }
210 223
211 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4); 224 memcpy(tmpStr, CHUNKheaderObj.fmt_ckID, 4);
212 } 225 }
213 226
214 // Either a proper format chunk has been read or a data chunk was come 227 // Either a proper format chunk has been read or a data chunk was come
215 // across. 228 // across.
216 if( (_wavFormatObj.formatTag != kWavFormatPcm) && 229 if( (_wavFormatObj.formatTag != kWavFormatPcm) &&
217 (_wavFormatObj.formatTag != kWavFormatALaw) && 230 (_wavFormatObj.formatTag != kWavFormatALaw) &&
218 (_wavFormatObj.formatTag != kWavFormatMuLaw)) 231 (_wavFormatObj.formatTag != kWavFormatMuLaw))
219 { 232 {
(...skipping 14 matching lines...) Expand all
234 if((_wavFormatObj.nBitsPerSample != 8) && 247 if((_wavFormatObj.nBitsPerSample != 8) &&
235 (_wavFormatObj.nBitsPerSample != 16)) 248 (_wavFormatObj.nBitsPerSample != 16))
236 { 249 {
237 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 250 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
238 "nBitsPerSample value=%d not supported!", 251 "nBitsPerSample value=%d not supported!",
239 _wavFormatObj.nBitsPerSample); 252 _wavFormatObj.nBitsPerSample);
240 return -1; 253 return -1;
241 } 254 }
242 255
243 // Calculate the number of bytes that 10 ms of audio data correspond to. 256 // Calculate the number of bytes that 10 ms of audio data correspond to.
244 if(_wavFormatObj.formatTag == kWavFormatPcm) 257 size_t samples_per_10ms =
245 { 258 ((_wavFormatObj.formatTag == kWavFormatPcm) &&
246 // TODO (hellner): integer division for 22050 and 11025 would yield 259 (_wavFormatObj.nSamplesPerSec == 44100)) ?
247 // the same result as the else statement. Remove those 260 440 : static_cast<size_t>(_wavFormatObj.nSamplesPerSec / 100);
248 // special cases? 261 _readSizeBytes = samples_per_10ms * _wavFormatObj.nChannels *
249 if(_wavFormatObj.nSamplesPerSec == 44100) 262 (_wavFormatObj.nBitsPerSample / 8);
250 {
251 _readSizeBytes = 440 * _wavFormatObj.nChannels *
252 (_wavFormatObj.nBitsPerSample / 8);
253 } else if(_wavFormatObj.nSamplesPerSec == 22050) {
254 _readSizeBytes = 220 * _wavFormatObj.nChannels *
255 (_wavFormatObj.nBitsPerSample / 8);
256 } else if(_wavFormatObj.nSamplesPerSec == 11025) {
257 _readSizeBytes = 110 * _wavFormatObj.nChannels *
258 (_wavFormatObj.nBitsPerSample / 8);
259 } else {
260 _readSizeBytes = (_wavFormatObj.nSamplesPerSec/100) *
261 _wavFormatObj.nChannels * (_wavFormatObj.nBitsPerSample / 8);
262 }
263
264 } else {
265 _readSizeBytes = (_wavFormatObj.nSamplesPerSec/100) *
266 _wavFormatObj.nChannels * (_wavFormatObj.nBitsPerSample / 8);
267 }
268 return 0; 263 return 0;
269 } 264 }
270 265
271 int32_t ModuleFileUtility::InitWavCodec(uint32_t samplesPerSec, 266 int32_t ModuleFileUtility::InitWavCodec(uint32_t samplesPerSec,
272 uint32_t channels, 267 size_t channels,
273 uint32_t bitsPerSample, 268 uint32_t bitsPerSample,
274 uint32_t formatTag) 269 uint32_t formatTag)
275 { 270 {
276 codec_info_.pltype = -1; 271 codec_info_.pltype = -1;
277 codec_info_.plfreq = samplesPerSec; 272 codec_info_.plfreq = samplesPerSec;
278 codec_info_.channels = channels; 273 codec_info_.channels = channels;
279 codec_info_.rate = bitsPerSample * samplesPerSec; 274 codec_info_.rate = bitsPerSample * samplesPerSec;
280 275
281 // Calculate the packet size for 10ms frames 276 // Calculate the packet size for 10ms frames
282 switch(formatTag) 277 switch(formatTag)
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "failed to read WAV header!"); 364 "failed to read WAV header!");
370 return -1; 365 return -1;
371 } 366 }
372 367
373 _playoutPositionMs = 0; 368 _playoutPositionMs = 0;
374 _readPos = 0; 369 _readPos = 0;
375 370
376 if(start > 0) 371 if(start > 0)
377 { 372 {
378 uint8_t dummy[WAV_MAX_BUFFER_SIZE]; 373 uint8_t dummy[WAV_MAX_BUFFER_SIZE];
379 int32_t readLength; 374 int readLength;
380 if(_readSizeBytes <= WAV_MAX_BUFFER_SIZE) 375 if(_readSizeBytes <= WAV_MAX_BUFFER_SIZE)
381 { 376 {
382 while (_playoutPositionMs < start) 377 while (_playoutPositionMs < start)
383 { 378 {
384 readLength = wav.Read(dummy, _readSizeBytes); 379 readLength = wav.Read(dummy, _readSizeBytes);
385 if(readLength == _readSizeBytes) 380 if(readLength == static_cast<int>(_readSizeBytes))
386 { 381 {
387 _readPos += readLength; 382 _readPos += _readSizeBytes;
388 _playoutPositionMs += 10; 383 _playoutPositionMs += 10;
389 } 384 }
390 else // Must have reached EOF before start position! 385 else // Must have reached EOF before start position!
391 { 386 {
392 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 387 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
393 "InitWavReading(), EOF before start position"); 388 "InitWavReading(), EOF before start position");
394 return -1; 389 return -1;
395 } 390 }
396 } 391 }
397 } 392 }
398 else 393 else
399 { 394 {
400 return -1; 395 return -1;
401 } 396 }
402 } 397 }
403 if( InitWavCodec(_wavFormatObj.nSamplesPerSec, _wavFormatObj.nChannels, 398 if( InitWavCodec(_wavFormatObj.nSamplesPerSec, _wavFormatObj.nChannels,
404 _wavFormatObj.nBitsPerSample, 399 _wavFormatObj.nBitsPerSample,
405 _wavFormatObj.formatTag) != 0) 400 _wavFormatObj.formatTag) != 0)
406 { 401 {
407 return -1; 402 return -1;
408 } 403 }
409 _bytesPerSample = _wavFormatObj.nBitsPerSample / 8; 404 _bytesPerSample = static_cast<size_t>(_wavFormatObj.nBitsPerSample / 8);
410 405
411 406
412 _startPointInMs = start; 407 _startPointInMs = start;
413 _stopPointInMs = stop; 408 _stopPointInMs = stop;
414 _reading = true; 409 _reading = true;
415 return 0; 410 return 0;
416 } 411 }
417 412
418 int32_t ModuleFileUtility::ReadWavDataAsMono( 413 int32_t ModuleFileUtility::ReadWavDataAsMono(
419 InStream& wav, 414 InStream& wav,
420 int8_t* outData, 415 int8_t* outData,
421 const size_t bufferSize) 416 const size_t bufferSize)
422 { 417 {
423 WEBRTC_TRACE( 418 WEBRTC_TRACE(
424 kTraceStream, 419 kTraceStream,
425 kTraceFile, 420 kTraceFile,
426 _id, 421 _id,
427 "ModuleFileUtility::ReadWavDataAsMono(wav= 0x%x, outData= 0x%d, " 422 "ModuleFileUtility::ReadWavDataAsMono(wav= 0x%x, outData= 0x%d, "
428 "bufSize= %" PRIuS ")", 423 "bufSize= %" PRIuS ")",
429 &wav, 424 &wav,
430 outData, 425 outData,
431 bufferSize); 426 bufferSize);
432 427
433 // The number of bytes that should be read from file. 428 // The number of bytes that should be read from file.
434 const uint32_t totalBytesNeeded = _readSizeBytes; 429 const size_t totalBytesNeeded = _readSizeBytes;
435 // The number of bytes that will be written to outData. 430 // The number of bytes that will be written to outData.
436 const uint32_t bytesRequested = (codec_info_.channels == 2) ? 431 const size_t bytesRequested = (codec_info_.channels == 2) ?
437 totalBytesNeeded >> 1 : totalBytesNeeded; 432 totalBytesNeeded >> 1 : totalBytesNeeded;
438 if(bufferSize < bytesRequested) 433 if(bufferSize < bytesRequested)
439 { 434 {
440 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 435 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
441 "ReadWavDataAsMono: output buffer is too short!"); 436 "ReadWavDataAsMono: output buffer is too short!");
442 return -1; 437 return -1;
443 } 438 }
444 if(outData == NULL) 439 if(outData == NULL)
445 { 440 {
446 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 441 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
(...skipping 18 matching lines...) Expand all
465 } 460 }
466 if(bytesRead < 0) 461 if(bytesRead < 0)
467 { 462 {
468 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 463 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
469 "ReadWavDataAsMono: failed to read data from WAV file."); 464 "ReadWavDataAsMono: failed to read data from WAV file.");
470 return -1; 465 return -1;
471 } 466 }
472 // Output data is should be mono. 467 // Output data is should be mono.
473 if(codec_info_.channels == 2) 468 if(codec_info_.channels == 2)
474 { 469 {
475 for (uint32_t i = 0; i < bytesRequested / _bytesPerSample; i++) 470 for (size_t i = 0; i < bytesRequested / _bytesPerSample; i++)
476 { 471 {
477 // Sample value is the average of left and right buffer rounded to 472 // Sample value is the average of left and right buffer rounded to
478 // closest integer value. Note samples can be either 1 or 2 byte. 473 // closest integer value. Note samples can be either 1 or 2 byte.
479 if(_bytesPerSample == 1) 474 if(_bytesPerSample == 1)
480 { 475 {
481 _tempData[i] = ((_tempData[2 * i] + _tempData[(2 * i) + 1] + 476 _tempData[i] = ((_tempData[2 * i] + _tempData[(2 * i) + 1] +
482 1) >> 1); 477 1) >> 1);
483 } 478 }
484 else 479 else
485 { 480 {
486 int16_t* sampleData = (int16_t*) _tempData; 481 int16_t* sampleData = (int16_t*) _tempData;
487 sampleData[i] = ((sampleData[2 * i] + sampleData[(2 * i) + 1] + 482 sampleData[i] = ((sampleData[2 * i] + sampleData[(2 * i) + 1] +
488 1) >> 1); 483 1) >> 1);
489 } 484 }
490 } 485 }
491 memcpy(outData, _tempData, bytesRequested); 486 memcpy(outData, _tempData, bytesRequested);
492 } 487 }
493 return bytesRequested; 488 return static_cast<int32_t>(bytesRequested);
494 } 489 }
495 490
496 int32_t ModuleFileUtility::ReadWavDataAsStereo( 491 int32_t ModuleFileUtility::ReadWavDataAsStereo(
497 InStream& wav, 492 InStream& wav,
498 int8_t* outDataLeft, 493 int8_t* outDataLeft,
499 int8_t* outDataRight, 494 int8_t* outDataRight,
500 const size_t bufferSize) 495 const size_t bufferSize)
501 { 496 {
502 WEBRTC_TRACE( 497 WEBRTC_TRACE(
503 kTraceStream, 498 kTraceStream,
(...skipping 23 matching lines...) Expand all
527 return -1; 522 return -1;
528 } 523 }
529 if(! _reading) 524 if(! _reading)
530 { 525 {
531 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 526 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
532 "ReadWavDataAsStereo: no longer reading file."); 527 "ReadWavDataAsStereo: no longer reading file.");
533 return -1; 528 return -1;
534 } 529 }
535 530
536 // The number of bytes that should be read from file. 531 // The number of bytes that should be read from file.
537 const uint32_t totalBytesNeeded = _readSizeBytes; 532 const size_t totalBytesNeeded = _readSizeBytes;
538 // The number of bytes that will be written to the left and the right 533 // The number of bytes that will be written to the left and the right
539 // buffers. 534 // buffers.
540 const uint32_t bytesRequested = totalBytesNeeded >> 1; 535 const size_t bytesRequested = totalBytesNeeded >> 1;
541 if(bufferSize < bytesRequested) 536 if(bufferSize < bytesRequested)
542 { 537 {
543 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 538 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
544 "ReadWavData: Output buffers are too short!"); 539 "ReadWavData: Output buffers are too short!");
545 assert(false); 540 assert(false);
546 return -1; 541 return -1;
547 } 542 }
548 543
549 int32_t bytesRead = ReadWavData(wav, _tempData, totalBytesNeeded); 544 int32_t bytesRead = ReadWavData(wav, _tempData, totalBytesNeeded);
550 if(bytesRead <= 0) 545 if(bytesRead <= 0)
551 { 546 {
552 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 547 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
553 "ReadWavDataAsStereo: failed to read data from WAV file."); 548 "ReadWavDataAsStereo: failed to read data from WAV file.");
554 return -1; 549 return -1;
555 } 550 }
556 551
557 // Turn interleaved audio to left and right buffer. Note samples can be 552 // Turn interleaved audio to left and right buffer. Note samples can be
558 // either 1 or 2 bytes 553 // either 1 or 2 bytes
559 if(_bytesPerSample == 1) 554 if(_bytesPerSample == 1)
560 { 555 {
561 for (uint32_t i = 0; i < bytesRequested; i++) 556 for (size_t i = 0; i < bytesRequested; i++)
562 { 557 {
563 outDataLeft[i] = _tempData[2 * i]; 558 outDataLeft[i] = _tempData[2 * i];
564 outDataRight[i] = _tempData[(2 * i) + 1]; 559 outDataRight[i] = _tempData[(2 * i) + 1];
565 } 560 }
566 } 561 }
567 else if(_bytesPerSample == 2) 562 else if(_bytesPerSample == 2)
568 { 563 {
569 int16_t* sampleData = reinterpret_cast<int16_t*>(_tempData); 564 int16_t* sampleData = reinterpret_cast<int16_t*>(_tempData);
570 int16_t* outLeft = reinterpret_cast<int16_t*>(outDataLeft); 565 int16_t* outLeft = reinterpret_cast<int16_t*>(outDataLeft);
571 int16_t* outRight = reinterpret_cast<int16_t*>( 566 int16_t* outRight = reinterpret_cast<int16_t*>(
572 outDataRight); 567 outDataRight);
573 568
574 // Bytes requested to samples requested. 569 // Bytes requested to samples requested.
575 uint32_t sampleCount = bytesRequested >> 1; 570 size_t sampleCount = bytesRequested >> 1;
576 for (uint32_t i = 0; i < sampleCount; i++) 571 for (size_t i = 0; i < sampleCount; i++)
577 { 572 {
578 outLeft[i] = sampleData[2 * i]; 573 outLeft[i] = sampleData[2 * i];
579 outRight[i] = sampleData[(2 * i) + 1]; 574 outRight[i] = sampleData[(2 * i) + 1];
580 } 575 }
581 } else { 576 } else {
582 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 577 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
583 "ReadWavStereoData: unsupported sample size %d!", 578 "ReadWavStereoData: unsupported sample size %" PRIuS "!",
584 _bytesPerSample); 579 _bytesPerSample);
585 assert(false); 580 assert(false);
586 return -1; 581 return -1;
587 } 582 }
588 return bytesRequested; 583 return static_cast<int32_t>(bytesRequested);
589 } 584 }
590 585
591 int32_t ModuleFileUtility::ReadWavData( 586 int32_t ModuleFileUtility::ReadWavData(InStream& wav,
592 InStream& wav, 587 uint8_t* buffer,
593 uint8_t* buffer, 588 size_t dataLengthInBytes)
594 const uint32_t dataLengthInBytes)
595 { 589 {
596 WEBRTC_TRACE( 590 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
597 kTraceStream, 591 "ModuleFileUtility::ReadWavData(wav= 0x%x, buffer= 0x%x, "
598 kTraceFile, 592 "dataLen= %" PRIuS ")", &wav, buffer, dataLengthInBytes);
599 _id,
600 "ModuleFileUtility::ReadWavData(wav= 0x%x, buffer= 0x%x, dataLen= %ld)",
601 &wav,
602 buffer,
603 dataLengthInBytes);
604 593
605 594
606 if(buffer == NULL) 595 if(buffer == NULL)
607 { 596 {
608 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 597 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
609 "ReadWavDataAsMono: output buffer NULL!"); 598 "ReadWavDataAsMono: output buffer NULL!");
610 return -1; 599 return -1;
611 } 600 }
612 601
613 // Make sure that a read won't return too few samples. 602 // Make sure that a read won't return too few samples.
614 // TODO (hellner): why not read the remaining bytes needed from the start 603 // TODO (hellner): why not read the remaining bytes needed from the start
615 // of the file? 604 // of the file?
616 if((_dataSize - _readPos) < (int32_t)dataLengthInBytes) 605 if(_dataSize < (_readPos + dataLengthInBytes))
617 { 606 {
618 // Rewind() being -1 may be due to the file not supposed to be looped. 607 // Rewind() being -1 may be due to the file not supposed to be looped.
619 if(wav.Rewind() == -1) 608 if(wav.Rewind() == -1)
620 { 609 {
621 _reading = false; 610 _reading = false;
622 return 0; 611 return 0;
623 } 612 }
624 if(InitWavReading(wav, _startPointInMs, _stopPointInMs) == -1) 613 if(InitWavReading(wav, _startPointInMs, _stopPointInMs) == -1)
625 { 614 {
626 _reading = false; 615 _reading = false;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 const CodecInst& codecInst) 667 const CodecInst& codecInst)
679 { 668 {
680 669
681 if(set_codec_info(codecInst) != 0) 670 if(set_codec_info(codecInst) != 0)
682 { 671 {
683 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 672 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
684 "codecInst identifies unsupported codec!"); 673 "codecInst identifies unsupported codec!");
685 return -1; 674 return -1;
686 } 675 }
687 _writing = false; 676 _writing = false;
688 uint32_t channels = (codecInst.channels == 0) ? 677 size_t channels = (codecInst.channels == 0) ? 1 : codecInst.channels;
689 1 : codecInst.channels;
690 678
691 if(STR_CASE_CMP(codecInst.plname, "PCMU") == 0) 679 if(STR_CASE_CMP(codecInst.plname, "PCMU") == 0)
692 { 680 {
693 _bytesPerSample = 1; 681 _bytesPerSample = 1;
694 if(WriteWavHeader(wav, 8000, _bytesPerSample, channels, 682 if(WriteWavHeader(wav, 8000, _bytesPerSample, channels,
695 kWavFormatMuLaw, 0) == -1) 683 kWavFormatMuLaw, 0) == -1)
696 { 684 {
697 return -1; 685 return -1;
698 } 686 }
699 }else if(STR_CASE_CMP(codecInst.plname, "PCMA") == 0) 687 }
688 else if(STR_CASE_CMP(codecInst.plname, "PCMA") == 0)
700 { 689 {
701 _bytesPerSample = 1; 690 _bytesPerSample = 1;
702 if(WriteWavHeader(wav, 8000, _bytesPerSample, channels, kWavFormatALaw, 691 if(WriteWavHeader(wav, 8000, _bytesPerSample, channels, kWavFormatALaw,
703 0) == -1) 692 0) == -1)
704 { 693 {
705 return -1; 694 return -1;
706 } 695 }
707 } 696 }
708 else if(STR_CASE_CMP(codecInst.plname, "L16") == 0) 697 else if(STR_CASE_CMP(codecInst.plname, "L16") == 0)
709 { 698 {
(...skipping 12 matching lines...) Expand all
722 } 711 }
723 _writing = true; 712 _writing = true;
724 _bytesWritten = 0; 713 _bytesWritten = 0;
725 return 0; 714 return 0;
726 } 715 }
727 716
728 int32_t ModuleFileUtility::WriteWavData(OutStream& out, 717 int32_t ModuleFileUtility::WriteWavData(OutStream& out,
729 const int8_t* buffer, 718 const int8_t* buffer,
730 const size_t dataLength) 719 const size_t dataLength)
731 { 720 {
732 WEBRTC_TRACE( 721 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
733 kTraceStream, 722 "ModuleFileUtility::WriteWavData(out= 0x%x, buf= 0x%x, "
734 kTraceFile, 723 "dataLen= %" PRIuS ")", &out, buffer, dataLength);
735 _id,
736 "ModuleFileUtility::WriteWavData(out= 0x%x, buf= 0x%x, dataLen= %" PRIuS
737 ")",
738 &out,
739 buffer,
740 dataLength);
741 724
742 if(buffer == NULL) 725 if(buffer == NULL)
743 { 726 {
744 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 727 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
745 "WriteWavData: input buffer NULL!"); 728 "WriteWavData: input buffer NULL!");
746 return -1; 729 return -1;
747 } 730 }
748 731
749 if(!out.Write(buffer, dataLength)) 732 if(!out.Write(buffer, dataLength))
750 { 733 {
751 return -1; 734 return -1;
752 } 735 }
753 _bytesWritten += dataLength; 736 _bytesWritten += dataLength;
754 return static_cast<int32_t>(dataLength); 737 return static_cast<int32_t>(dataLength);
755 } 738 }
756 739
757 740
758 int32_t ModuleFileUtility::WriteWavHeader( 741 int32_t ModuleFileUtility::WriteWavHeader(
759 OutStream& wav, 742 OutStream& wav,
760 const uint32_t freq, 743 const uint32_t freq,
761 const uint32_t bytesPerSample, 744 const size_t bytesPerSample,
762 const uint32_t channels, 745 const size_t channels,
763 const uint32_t format, 746 const uint32_t format,
764 const uint32_t lengthInBytes) 747 const size_t lengthInBytes)
765 { 748 {
766 // Frame size in bytes for 10 ms of audio. 749 // Frame size in bytes for 10 ms of audio.
767 // TODO (hellner): 44.1 kHz has 440 samples frame size. Doesn't seem to 750 // TODO (hellner): 44.1 kHz has 440 samples frame size. Doesn't seem to
768 // be taken into consideration here! 751 // be taken into consideration here!
769 const int32_t frameSize = (freq / 100) * channels; 752 const size_t frameSize = (freq / 100) * channels;
770 753
771 // Calculate the number of full frames that the wave file contain. 754 // Calculate the number of full frames that the wave file contain.
772 const int32_t dataLengthInBytes = frameSize * (lengthInBytes / frameSize); 755 const size_t dataLengthInBytes = frameSize * (lengthInBytes / frameSize);
773 756
774 uint8_t buf[kWavHeaderSize]; 757 uint8_t buf[kWavHeaderSize];
775 webrtc::WriteWavHeader(buf, channels, freq, static_cast<WavFormat>(format), 758 webrtc::WriteWavHeader(buf, channels, freq, static_cast<WavFormat>(format),
776 bytesPerSample, dataLengthInBytes / bytesPerSample); 759 bytesPerSample, dataLengthInBytes / bytesPerSample);
777 wav.Write(buf, kWavHeaderSize); 760 wav.Write(buf, kWavHeaderSize);
778 return 0; 761 return 0;
779 } 762 }
780 763
781 int32_t ModuleFileUtility::UpdateWavHeader(OutStream& wav) 764 int32_t ModuleFileUtility::UpdateWavHeader(OutStream& wav)
782 { 765 {
783 int32_t res = -1; 766 int32_t res = -1;
784 if(wav.Rewind() == -1) 767 if(wav.Rewind() == -1)
785 { 768 {
786 return -1; 769 return -1;
787 } 770 }
788 uint32_t channels = (codec_info_.channels == 0) ? 771 size_t channels = (codec_info_.channels == 0) ? 1 : codec_info_.channels;
789 1 : codec_info_.channels;
790 772
791 if(STR_CASE_CMP(codec_info_.plname, "L16") == 0) 773 if(STR_CASE_CMP(codec_info_.plname, "L16") == 0)
792 { 774 {
793 res = WriteWavHeader(wav, codec_info_.plfreq, 2, channels, 775 res = WriteWavHeader(wav, codec_info_.plfreq, 2, channels,
794 kWavFormatPcm, _bytesWritten); 776 kWavFormatPcm, _bytesWritten);
795 } else if(STR_CASE_CMP(codec_info_.plname, "PCMU") == 0) { 777 } else if(STR_CASE_CMP(codec_info_.plname, "PCMU") == 0) {
796 res = WriteWavHeader(wav, 8000, 1, channels, kWavFormatMuLaw, 778 res = WriteWavHeader(wav, 8000, 1, channels, kWavFormatMuLaw,
797 _bytesWritten); 779 _bytesWritten);
798 } else if(STR_CASE_CMP(codec_info_.plname, "PCMA") == 0) { 780 } else if(STR_CASE_CMP(codec_info_.plname, "PCMA") == 0) {
799 res = WriteWavHeader(wav, 8000, 1, channels, kWavFormatALaw, 781 res = WriteWavHeader(wav, 8000, 1, channels, kWavFormatALaw,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 memcpy(&codec_info_,&cinst,sizeof(CodecInst)); 814 memcpy(&codec_info_,&cinst,sizeof(CodecInst));
833 _reading = true; 815 _reading = true;
834 return 0; 816 return 0;
835 } 817 }
836 818
837 int32_t ModuleFileUtility::ReadPreEncodedData( 819 int32_t ModuleFileUtility::ReadPreEncodedData(
838 InStream& in, 820 InStream& in,
839 int8_t* outData, 821 int8_t* outData,
840 const size_t bufferSize) 822 const size_t bufferSize)
841 { 823 {
842 WEBRTC_TRACE( 824 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
843 kTraceStream, 825 "ModuleFileUtility::ReadPreEncodedData(in= 0x%x, "
844 kTraceFile, 826 "outData= 0x%x, bufferSize= %" PRIuS ")", &in, outData,
845 _id, 827 bufferSize);
846 "ModuleFileUtility::ReadPreEncodedData(in= 0x%x, outData= 0x%x, "
847 "bufferSize= %" PRIuS ")",
848 &in,
849 outData,
850 bufferSize);
851 828
852 if(outData == NULL) 829 if(outData == NULL)
853 { 830 {
854 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "output buffer NULL"); 831 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "output buffer NULL");
855 } 832 }
856 833
857 uint32_t frameLen; 834 size_t frameLen;
858 uint8_t buf[64]; 835 uint8_t buf[64];
859 // Each frame has a two byte header containing the frame length. 836 // Each frame has a two byte header containing the frame length.
860 int32_t res = in.Read(buf, 2); 837 int32_t res = in.Read(buf, 2);
861 if(res != 2) 838 if(res != 2)
862 { 839 {
863 if(!in.Rewind()) 840 if(!in.Rewind())
864 { 841 {
865 // The first byte is the codec identifier. 842 // The first byte is the codec identifier.
866 in.Read(buf, 1); 843 in.Read(buf, 1);
867 res = in.Read(buf, 2); 844 res = in.Read(buf, 2);
868 } 845 }
869 else 846 else
870 { 847 {
871 return -1; 848 return -1;
872 } 849 }
873 } 850 }
874 frameLen = buf[0] + buf[1] * 256; 851 frameLen = buf[0] + buf[1] * 256;
875 if(bufferSize < frameLen) 852 if(bufferSize < frameLen)
876 { 853 {
877 WEBRTC_TRACE( 854 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
878 kTraceError, 855 "buffer not large enough to read %" PRIuS " bytes of "
879 kTraceFile, 856 "pre-encoded data!", frameLen);
880 _id,
881 "buffer not large enough to read %d bytes of pre-encoded data!",
882 frameLen);
883 return -1; 857 return -1;
884 } 858 }
885 return in.Read(outData, frameLen); 859 return in.Read(outData, frameLen);
886 } 860 }
887 861
888 int32_t ModuleFileUtility::InitPreEncodedWriting( 862 int32_t ModuleFileUtility::InitPreEncodedWriting(
889 OutStream& out, 863 OutStream& out,
890 const CodecInst& codecInst) 864 const CodecInst& codecInst)
891 { 865 {
892 866
893 if(set_codec_info(codecInst) != 0) 867 if(set_codec_info(codecInst) != 0)
894 { 868 {
895 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "CodecInst not recognized!"); 869 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "CodecInst not recognized!");
896 return -1; 870 return -1;
897 } 871 }
898 _writing = true; 872 _writing = true;
899 _bytesWritten = 1; 873 _bytesWritten = 1;
900 out.Write(&_codecId, 1); 874 out.Write(&_codecId, 1);
901 return 0; 875 return 0;
902 } 876 }
903 877
904 int32_t ModuleFileUtility::WritePreEncodedData( 878 int32_t ModuleFileUtility::WritePreEncodedData(
905 OutStream& out, 879 OutStream& out,
906 const int8_t* buffer, 880 const int8_t* buffer,
907 const size_t dataLength) 881 const size_t dataLength)
908 { 882 {
909 WEBRTC_TRACE( 883 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
910 kTraceStream, 884 "ModuleFileUtility::WritePreEncodedData(out= 0x%x, "
911 kTraceFile, 885 "inData= 0x%x, dataLen= %" PRIuS ")", &out, buffer,
912 _id, 886 dataLength);
913 "ModuleFileUtility::WritePreEncodedData(out= 0x%x, inData= 0x%x, "
914 "dataLen= %" PRIuS ")",
915 &out,
916 buffer,
917 dataLength);
918 887
919 if(buffer == NULL) 888 if(buffer == NULL)
920 { 889 {
921 WEBRTC_TRACE(kTraceError, kTraceFile, _id,"buffer NULL"); 890 WEBRTC_TRACE(kTraceError, kTraceFile, _id,"buffer NULL");
922 } 891 }
923 892
924 size_t bytesWritten = 0; 893 size_t bytesWritten = 0;
925 // The first two bytes is the size of the frame. 894 // The first two bytes is the size of the frame.
926 int16_t lengthBuf; 895 int16_t lengthBuf;
927 lengthBuf = (int16_t)dataLength; 896 lengthBuf = (int16_t)dataLength;
(...skipping 10 matching lines...) Expand all
938 } 907 }
939 bytesWritten += dataLength; 908 bytesWritten += dataLength;
940 return static_cast<int32_t>(bytesWritten); 909 return static_cast<int32_t>(bytesWritten);
941 } 910 }
942 911
943 int32_t ModuleFileUtility::InitCompressedReading( 912 int32_t ModuleFileUtility::InitCompressedReading(
944 InStream& in, 913 InStream& in,
945 const uint32_t start, 914 const uint32_t start,
946 const uint32_t stop) 915 const uint32_t stop)
947 { 916 {
948 WEBRTC_TRACE( 917 WEBRTC_TRACE(kTraceDebug, kTraceFile, _id,
949 kTraceDebug, 918 "ModuleFileUtility::InitCompressedReading(in= 0x%x, "
950 kTraceFile, 919 "start= %d, stop= %d)", &in, start, stop);
951 _id,
952 "ModuleFileUtility::InitCompressedReading(in= 0x%x, start= %d,\
953 stop= %d)",
954 &in,
955 start,
956 stop);
957 920
958 #if defined(WEBRTC_CODEC_ILBC) 921 #if defined(WEBRTC_CODEC_ILBC)
959 int16_t read_len = 0; 922 int16_t read_len = 0;
960 #endif 923 #endif
961 _codecId = kCodecNoCodec; 924 _codecId = kCodecNoCodec;
962 _playoutPositionMs = 0; 925 _playoutPositionMs = 0;
963 _reading = false; 926 _reading = false;
964 927
965 _startPointInMs = start; 928 _startPointInMs = start;
966 _stopPointInMs = stop; 929 _stopPointInMs = stop;
967 930
968 // Read the codec name 931 // Read the codec name
969 int32_t cnt = 0; 932 int32_t cnt = 0;
970 char buf[64]; 933 char buf[64];
971 do 934 do
972 { 935 {
973 in.Read(&buf[cnt++], 1); 936 in.Read(&buf[cnt++], 1);
974 } while ((buf[cnt-1] != '\n') && (64 > cnt)); 937 } while ((buf[cnt-1] != '\n') && (64 > cnt));
975 938
976 if(cnt==64) 939 if(cnt==64)
977 { 940 {
978 return -1; 941 return -1;
979 } else {
980 buf[cnt]=0;
981 } 942 }
943 buf[cnt]=0;
982 944
983 #ifdef WEBRTC_CODEC_ILBC 945 #ifdef WEBRTC_CODEC_ILBC
984 if(!strcmp("#!iLBC20\n", buf)) 946 if(!strcmp("#!iLBC20\n", buf))
985 { 947 {
986 codec_info_.pltype = 102; 948 codec_info_.pltype = 102;
987 strcpy(codec_info_.plname, "ilbc"); 949 strcpy(codec_info_.plname, "ilbc");
988 codec_info_.plfreq = 8000; 950 codec_info_.plfreq = 8000;
989 codec_info_.pacsize = 160; 951 codec_info_.pacsize = 160;
990 codec_info_.channels = 1; 952 codec_info_.channels = 1;
991 codec_info_.rate = 13300; 953 codec_info_.rate = 13300;
992 _codecId = kCodecIlbc20Ms; 954 _codecId = kCodecIlbc20Ms;
993 955
994 if(_startPointInMs > 0) 956 if(_startPointInMs > 0)
995 { 957 {
996 while (_playoutPositionMs <= _startPointInMs) 958 while (_playoutPositionMs <= _startPointInMs)
997 { 959 {
998 read_len = in.Read(buf, 38); 960 read_len = in.Read(buf, 38);
999 if(read_len == 38) 961 if(read_len != 38)
1000 {
1001 _playoutPositionMs += 20;
1002 }
1003 else
1004 { 962 {
1005 return -1; 963 return -1;
1006 } 964 }
965 _playoutPositionMs += 20;
1007 } 966 }
1008 } 967 }
1009 } 968 }
1010 969
1011 if(!strcmp("#!iLBC30\n", buf)) 970 if(!strcmp("#!iLBC30\n", buf))
1012 { 971 {
1013 codec_info_.pltype = 102; 972 codec_info_.pltype = 102;
1014 strcpy(codec_info_.plname, "ilbc"); 973 strcpy(codec_info_.plname, "ilbc");
1015 codec_info_.plfreq = 8000; 974 codec_info_.plfreq = 8000;
1016 codec_info_.pacsize = 240; 975 codec_info_.pacsize = 240;
1017 codec_info_.channels = 1; 976 codec_info_.channels = 1;
1018 codec_info_.rate = 13300; 977 codec_info_.rate = 13300;
1019 _codecId = kCodecIlbc30Ms; 978 _codecId = kCodecIlbc30Ms;
1020 979
1021 if(_startPointInMs > 0) 980 if(_startPointInMs > 0)
1022 { 981 {
1023 while (_playoutPositionMs <= _startPointInMs) 982 while (_playoutPositionMs <= _startPointInMs)
1024 { 983 {
1025 read_len = in.Read(buf, 50); 984 read_len = in.Read(buf, 50);
1026 if(read_len == 50) 985 if(read_len != 50)
1027 {
1028 _playoutPositionMs += 20;
1029 }
1030 else
1031 { 986 {
1032 return -1; 987 return -1;
1033 } 988 }
989 _playoutPositionMs += 20;
1034 } 990 }
1035 } 991 }
1036 } 992 }
1037 #endif 993 #endif
1038 if(_codecId == kCodecNoCodec) 994 if(_codecId == kCodecNoCodec)
1039 { 995 {
1040 return -1; 996 return -1;
1041 } 997 }
1042 _reading = true; 998 _reading = true;
1043 return 0; 999 return 0;
1044 } 1000 }
1045 1001
1046 int32_t ModuleFileUtility::ReadCompressedData(InStream& in, 1002 int32_t ModuleFileUtility::ReadCompressedData(InStream& in,
1047 int8_t* outData, 1003 int8_t* outData,
1048 size_t bufferSize) 1004 size_t bufferSize)
1049 { 1005 {
1050 WEBRTC_TRACE( 1006 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1051 kTraceStream, 1007 "ModuleFileUtility::ReadCompressedData(in=0x%x, outData=0x%x, "
1052 kTraceFile, 1008 "bytes=%" PRIuS ")", &in, outData, bufferSize);
1053 _id,
1054 "ModuleFileUtility::ReadCompressedData(in=0x%x, outData=0x%x, bytes=%"
1055 PRIuS ")",
1056 &in,
1057 outData,
1058 bufferSize);
1059 1009
1060 uint32_t bytesRead = 0; 1010 int bytesRead = 0;
1061 1011
1062 if(! _reading) 1012 if(! _reading)
1063 { 1013 {
1064 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "not currently reading!"); 1014 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "not currently reading!");
1065 return -1; 1015 return -1;
1066 } 1016 }
1067 1017
1068 #ifdef WEBRTC_CODEC_ILBC 1018 #ifdef WEBRTC_CODEC_ILBC
1069 if((_codecId == kCodecIlbc20Ms) || 1019 if((_codecId == kCodecIlbc20Ms) ||
1070 (_codecId == kCodecIlbc30Ms)) 1020 (_codecId == kCodecIlbc30Ms))
1071 { 1021 {
1072 uint32_t byteSize = 0; 1022 size_t byteSize = 0;
1073 if(_codecId == kCodecIlbc30Ms) 1023 if(_codecId == kCodecIlbc30Ms)
1074 { 1024 {
1075 byteSize = 50; 1025 byteSize = 50;
1076 } 1026 }
1077 if(_codecId == kCodecIlbc20Ms) 1027 if(_codecId == kCodecIlbc20Ms)
1078 { 1028 {
1079 byteSize = 38; 1029 byteSize = 38;
1080 } 1030 }
1081 if(bufferSize < byteSize) 1031 if(bufferSize < byteSize)
1082 { 1032 {
1083 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 1033 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
1084 "output buffer is too short to read ILBC compressed\ 1034 "output buffer is too short to read ILBC compressed "
1085 data."); 1035 "data.");
1086 assert(false); 1036 assert(false);
1087 return -1; 1037 return -1;
1088 } 1038 }
1089 1039
1090 bytesRead = in.Read(outData, byteSize); 1040 bytesRead = in.Read(outData, byteSize);
1091 if(bytesRead != byteSize) 1041 if(bytesRead != static_cast<int>(byteSize))
1092 { 1042 {
1093 if(!in.Rewind()) 1043 if(!in.Rewind())
1094 { 1044 {
1095 InitCompressedReading(in, _startPointInMs, _stopPointInMs); 1045 InitCompressedReading(in, _startPointInMs, _stopPointInMs);
1096 bytesRead = in.Read(outData, byteSize); 1046 bytesRead = in.Read(outData, byteSize);
1097 if(bytesRead != byteSize) 1047 if(bytesRead != static_cast<int>(byteSize))
1098 { 1048 {
1099 _reading = false; 1049 _reading = false;
1100 return -1; 1050 return -1;
1101 } 1051 }
1102 } 1052 }
1103 else 1053 else
1104 { 1054 {
1105 _reading = false; 1055 _reading = false;
1106 return -1; 1056 return -1;
1107 } 1057 }
(...skipping 21 matching lines...) Expand all
1129 } 1079 }
1130 } 1080 }
1131 return bytesRead; 1081 return bytesRead;
1132 } 1082 }
1133 1083
1134 int32_t ModuleFileUtility::InitCompressedWriting( 1084 int32_t ModuleFileUtility::InitCompressedWriting(
1135 OutStream& out, 1085 OutStream& out,
1136 const CodecInst& codecInst) 1086 const CodecInst& codecInst)
1137 { 1087 {
1138 WEBRTC_TRACE(kTraceDebug, kTraceFile, _id, 1088 WEBRTC_TRACE(kTraceDebug, kTraceFile, _id,
1139 "ModuleFileUtility::InitCompressedWriting(out= 0x%x,\ 1089 "ModuleFileUtility::InitCompressedWriting(out= 0x%x, "
1140 codecName= %s)", 1090 "codecName= %s)", &out, codecInst.plname);
1141 &out, codecInst.plname);
1142 1091
1143 _writing = false; 1092 _writing = false;
1144 1093
1145 #ifdef WEBRTC_CODEC_ILBC 1094 #ifdef WEBRTC_CODEC_ILBC
1146 if(STR_CASE_CMP(codecInst.plname, "ilbc") == 0) 1095 if(STR_CASE_CMP(codecInst.plname, "ilbc") == 0)
1147 { 1096 {
1148 if(codecInst.pacsize == 160) 1097 if(codecInst.pacsize == 160)
1149 { 1098 {
1150 _codecId = kCodecIlbc20Ms; 1099 _codecId = kCodecIlbc20Ms;
1151 out.Write("#!iLBC20\n",9); 1100 out.Write("#!iLBC20\n",9);
(...skipping 18 matching lines...) Expand all
1170 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 1119 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
1171 "codecInst defines unsupported compression codec!"); 1120 "codecInst defines unsupported compression codec!");
1172 return -1; 1121 return -1;
1173 } 1122 }
1174 1123
1175 int32_t ModuleFileUtility::WriteCompressedData( 1124 int32_t ModuleFileUtility::WriteCompressedData(
1176 OutStream& out, 1125 OutStream& out,
1177 const int8_t* buffer, 1126 const int8_t* buffer,
1178 const size_t dataLength) 1127 const size_t dataLength)
1179 { 1128 {
1180 WEBRTC_TRACE( 1129 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1181 kTraceStream, 1130 "ModuleFileUtility::WriteCompressedData(out= 0x%x, buf= 0x%x, "
1182 kTraceFile, 1131 "dataLen= %" PRIuS ")", &out, buffer, dataLength);
1183 _id,
1184 "ModuleFileUtility::WriteCompressedData(out= 0x%x, buf= 0x%x, "
1185 "dataLen= %" PRIuS ")",
1186 &out,
1187 buffer,
1188 dataLength);
1189 1132
1190 if(buffer == NULL) 1133 if(buffer == NULL)
1191 { 1134 {
1192 WEBRTC_TRACE(kTraceError, kTraceFile, _id,"buffer NULL"); 1135 WEBRTC_TRACE(kTraceError, kTraceFile, _id,"buffer NULL");
1193 } 1136 }
1194 1137
1195 if(!out.Write(buffer, dataLength)) 1138 if(!out.Write(buffer, dataLength))
1196 { 1139 {
1197 return -1; 1140 return -1;
1198 } 1141 }
1199 return static_cast<int32_t>(dataLength); 1142 return static_cast<int32_t>(dataLength);
1200 } 1143 }
1201 1144
1202 int32_t ModuleFileUtility::InitPCMReading(InStream& pcm, 1145 int32_t ModuleFileUtility::InitPCMReading(InStream& pcm,
1203 const uint32_t start, 1146 const uint32_t start,
1204 const uint32_t stop, 1147 const uint32_t stop,
1205 uint32_t freq) 1148 uint32_t freq)
1206 { 1149 {
1207 WEBRTC_TRACE( 1150 WEBRTC_TRACE(kTraceInfo, kTraceFile, _id,
1208 kTraceInfo, 1151 "ModuleFileUtility::InitPCMReading(pcm= 0x%x, start=%d, "
1209 kTraceFile, 1152 "stop=%d, freq=%d)", &pcm, start, stop, freq);
1210 _id,
1211 "ModuleFileUtility::InitPCMReading(pcm= 0x%x, start=%d, stop=%d,\
1212 freq=%d)",
1213 &pcm,
1214 start,
1215 stop,
1216 freq);
1217 1153
1218 int8_t dummy[320]; 1154 int8_t dummy[320];
1219 int32_t read_len; 1155 int read_len;
1220 1156
1221 _playoutPositionMs = 0; 1157 _playoutPositionMs = 0;
1222 _startPointInMs = start; 1158 _startPointInMs = start;
1223 _stopPointInMs = stop; 1159 _stopPointInMs = stop;
1224 _reading = false; 1160 _reading = false;
1225 1161
1226 if(freq == 8000) 1162 if(freq == 8000)
1227 { 1163 {
1228 strcpy(codec_info_.plname, "L16"); 1164 strcpy(codec_info_.plname, "L16");
1229 codec_info_.pltype = -1; 1165 codec_info_.pltype = -1;
(...skipping 24 matching lines...) Expand all
1254 _codecId = kCodecL16_32Khz; 1190 _codecId = kCodecL16_32Khz;
1255 } 1191 }
1256 1192
1257 // Readsize for 10ms of audio data (2 bytes per sample). 1193 // Readsize for 10ms of audio data (2 bytes per sample).
1258 _readSizeBytes = 2 * codec_info_. plfreq / 100; 1194 _readSizeBytes = 2 * codec_info_. plfreq / 100;
1259 if(_startPointInMs > 0) 1195 if(_startPointInMs > 0)
1260 { 1196 {
1261 while (_playoutPositionMs < _startPointInMs) 1197 while (_playoutPositionMs < _startPointInMs)
1262 { 1198 {
1263 read_len = pcm.Read(dummy, _readSizeBytes); 1199 read_len = pcm.Read(dummy, _readSizeBytes);
1264 if(read_len == _readSizeBytes) 1200 if(read_len != static_cast<int>(_readSizeBytes))
1265 { 1201 {
1266 _playoutPositionMs += 10; 1202 return -1; // Must have reached EOF before start position!
1267 } 1203 }
1268 else // Must have reached EOF before start position! 1204 _playoutPositionMs += 10;
1269 {
1270 return -1;
1271 }
1272 } 1205 }
1273 } 1206 }
1274 _reading = true; 1207 _reading = true;
1275 return 0; 1208 return 0;
1276 } 1209 }
1277 1210
1278 int32_t ModuleFileUtility::ReadPCMData(InStream& pcm, 1211 int32_t ModuleFileUtility::ReadPCMData(InStream& pcm,
1279 int8_t* outData, 1212 int8_t* outData,
1280 size_t bufferSize) 1213 size_t bufferSize)
1281 { 1214 {
1282 WEBRTC_TRACE( 1215 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1283 kTraceStream, 1216 "ModuleFileUtility::ReadPCMData(pcm= 0x%x, outData= 0x%x, "
1284 kTraceFile, 1217 "bufSize= %" PRIuS ")", &pcm, outData, bufferSize);
1285 _id,
1286 "ModuleFileUtility::ReadPCMData(pcm= 0x%x, outData= 0x%x, bufSize= %"
1287 PRIuS ")",
1288 &pcm,
1289 outData,
1290 bufferSize);
1291 1218
1292 if(outData == NULL) 1219 if(outData == NULL)
1293 { 1220 {
1294 WEBRTC_TRACE(kTraceError, kTraceFile, _id,"buffer NULL"); 1221 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "buffer NULL");
1295 } 1222 }
1296 1223
1297 // Readsize for 10ms of audio data (2 bytes per sample). 1224 // Readsize for 10ms of audio data (2 bytes per sample).
1298 uint32_t bytesRequested = 2 * codec_info_.plfreq / 100; 1225 size_t bytesRequested = static_cast<size_t>(2 * codec_info_.plfreq / 100);
1299 if(bufferSize < bytesRequested) 1226 if(bufferSize < bytesRequested)
1300 { 1227 {
1301 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 1228 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
1302 "ReadPCMData: buffer not long enough for a 10ms frame."); 1229 "ReadPCMData: buffer not long enough for a 10ms frame.");
1303 assert(false); 1230 assert(false);
1304 return -1; 1231 return -1;
1305 } 1232 }
1306 1233
1307 uint32_t bytesRead = pcm.Read(outData, bytesRequested); 1234 int bytesRead = pcm.Read(outData, bytesRequested);
1308 if(bytesRead < bytesRequested) 1235 if(bytesRead < static_cast<int>(bytesRequested))
1309 { 1236 {
1310 if(pcm.Rewind() == -1) 1237 if(pcm.Rewind() == -1)
1311 { 1238 {
1312 _reading = false; 1239 _reading = false;
1313 } 1240 }
1314 else 1241 else
1315 { 1242 {
1316 if(InitPCMReading(pcm, _startPointInMs, _stopPointInMs, 1243 if(InitPCMReading(pcm, _startPointInMs, _stopPointInMs,
1317 codec_info_.plfreq) == -1) 1244 codec_info_.plfreq) == -1)
1318 { 1245 {
1319 _reading = false; 1246 _reading = false;
1320 } 1247 }
1321 else 1248 else
1322 { 1249 {
1323 int32_t rest = bytesRequested - bytesRead; 1250 size_t rest = bytesRequested - bytesRead;
1324 int32_t len = pcm.Read(&(outData[bytesRead]), rest); 1251 int len = pcm.Read(&(outData[bytesRead]), rest);
1325 if(len == rest) 1252 if(len == static_cast<int>(rest))
1326 { 1253 {
1327 bytesRead += len; 1254 bytesRead += len;
1328 } 1255 }
1329 else 1256 else
1330 { 1257 {
1331 _reading = false; 1258 _reading = false;
1332 } 1259 }
1333 } 1260 }
1334 if(bytesRead <= 0) 1261 if(bytesRead <= 0)
1335 { 1262 {
1336 WEBRTC_TRACE(kTraceError, kTraceFile, _id, 1263 WEBRTC_TRACE(kTraceError, kTraceFile, _id,
1337 "ReadPCMData: Failed to rewind audio file."); 1264 "ReadPCMData: Failed to rewind audio file.");
1338 return -1; 1265 return -1;
1339 } 1266 }
1340 } 1267 }
1341 } 1268 }
1342 1269
1343 if(bytesRead <= 0) 1270 if(bytesRead <= 0)
1344 { 1271 {
1345 WEBRTC_TRACE(kTraceStream, kTraceFile, _id, 1272 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1346 "ReadPCMData: end of file"); 1273 "ReadPCMData: end of file");
1347 return -1; 1274 return -1;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 } 1334 }
1408 _writing = true; 1335 _writing = true;
1409 _bytesWritten = 0; 1336 _bytesWritten = 0;
1410 return 0; 1337 return 0;
1411 } 1338 }
1412 1339
1413 int32_t ModuleFileUtility::WritePCMData(OutStream& out, 1340 int32_t ModuleFileUtility::WritePCMData(OutStream& out,
1414 const int8_t* buffer, 1341 const int8_t* buffer,
1415 const size_t dataLength) 1342 const size_t dataLength)
1416 { 1343 {
1417 WEBRTC_TRACE( 1344 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1418 kTraceStream, 1345 "ModuleFileUtility::WritePCMData(out= 0x%x, buf= 0x%x, "
1419 kTraceFile, 1346 "dataLen= %" PRIuS ")", &out, buffer, dataLength);
1420 _id,
1421 "ModuleFileUtility::WritePCMData(out= 0x%x, buf= 0x%x, dataLen= %" PRIuS
1422 ")",
1423 &out,
1424 buffer,
1425 dataLength);
1426 1347
1427 if(buffer == NULL) 1348 if(buffer == NULL)
1428 { 1349 {
1429 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "buffer NULL"); 1350 WEBRTC_TRACE(kTraceError, kTraceFile, _id, "buffer NULL");
1430 } 1351 }
1431 1352
1432 if(!out.Write(buffer, dataLength)) 1353 if(!out.Write(buffer, dataLength))
1433 { 1354 {
1434 return -1; 1355 return -1;
1435 } 1356 }
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 case kFileFormatPcm8kHzFile: 1499 case kFileFormatPcm8kHzFile:
1579 { 1500 {
1580 // 8 samples per ms. 2 bytes per sample. 1501 // 8 samples per ms. 2 bytes per sample.
1581 int32_t denominator = 8*2; 1502 int32_t denominator = 8*2;
1582 time_in_ms = (file_size.st_size)/denominator; 1503 time_in_ms = (file_size.st_size)/denominator;
1583 break; 1504 break;
1584 } 1505 }
1585 case kFileFormatCompressedFile: 1506 case kFileFormatCompressedFile:
1586 { 1507 {
1587 int32_t cnt = 0; 1508 int32_t cnt = 0;
1588 int32_t read_len = 0; 1509 int read_len = 0;
1589 char buf[64]; 1510 char buf[64];
1590 do 1511 do
1591 { 1512 {
1592 read_len = inStreamObj->Read(&buf[cnt++], 1); 1513 read_len = inStreamObj->Read(&buf[cnt++], 1);
1593 if(read_len != 1) 1514 if(read_len != 1)
1594 { 1515 {
1595 return -1; 1516 return -1;
1596 } 1517 }
1597 } while ((buf[cnt-1] != '\n') && (64 > cnt)); 1518 } while ((buf[cnt-1] != '\n') && (64 > cnt));
1598 1519
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 break; 1556 break;
1636 } 1557 }
1637 inStreamObj->CloseFile(); 1558 inStreamObj->CloseFile();
1638 delete inStreamObj; 1559 delete inStreamObj;
1639 return time_in_ms; 1560 return time_in_ms;
1640 } 1561 }
1641 1562
1642 uint32_t ModuleFileUtility::PlayoutPositionMs() 1563 uint32_t ModuleFileUtility::PlayoutPositionMs()
1643 { 1564 {
1644 WEBRTC_TRACE(kTraceStream, kTraceFile, _id, 1565 WEBRTC_TRACE(kTraceStream, kTraceFile, _id,
1645 "ModuleFileUtility::PlayoutPosition()"); 1566 "ModuleFileUtility::PlayoutPosition()");
1646 1567
1647 if(_reading) 1568 return _reading ? _playoutPositionMs : 0;
1648 {
1649 return _playoutPositionMs;
1650 }
1651 else
1652 {
1653 return 0;
1654 }
1655 } 1569 }
1656 } // namespace webrtc 1570 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/media_file/source/media_file_utility.h ('k') | webrtc/modules/rtp_rtcp/interface/rtp_payload_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698