MCPcopy Create free account
hub / github.com/adamstark/AudioFile / printSummary

Method printSummary

AudioFile.h:384–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382//=============================================================
383template <class T>
384void 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//=============================================================
396template <class T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected