| 382 | //============================================================= |
| 383 | template <class T> |
| 384 | void AudioFile<T>::printSummary() const |
| 385 | { |
| 386 | std::cerr << "|======================================|" << std::endl; |
| 387 | std::cerr << "Num Channels: " << getNumChannels() << std::endl; |
| 388 | std::cerr << "Num Samples Per Channel: " << getNumSamplesPerChannel() << std::endl; |
| 389 | std::cerr << "Sample Rate: " << sampleRate << std::endl; |
| 390 | std::cerr << "Bit Depth: " << bitDepth << std::endl; |
| 391 | std::cerr << "Length in Seconds: " << getLengthInSeconds() << std::endl; |
| 392 | std::cerr << "|======================================|" << std::endl; |
| 393 | } |
| 394 | |
| 395 | //============================================================= |
| 396 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected