tagparser/adts/adtsstream.cpp

44 lines
1.4 KiB
C++

#include "./adtsstream.h"
#include "../mp4/mp4ids.h"
#include "../exceptions.h"
#include <string>
using namespace std;
namespace TagParser {
/*!
* \class TagParser::AdtsStream
* \brief Implementation of TagParser::AbstractTrack for ADTS streams.
*/
void AdtsStream::internalParseHeader(Diagnostics &diag, AbortableProgressFeedback &progress)
{
CPP_UTILITIES_UNUSED(diag)
CPP_UTILITIES_UNUSED(progress)
//static const string context("parsing ADTS frame header");
if (!m_istream) {
throw NoDataFoundException();
}
// get size
m_istream->seekg(-128, ios_base::end);
if (m_reader.readUInt24BE() == 0x544147) {
m_size = static_cast<std::uint64_t>(m_istream->tellg()) - 3u - m_startOffset;
} else {
m_size = static_cast<std::uint64_t>(m_istream->tellg()) + 125u - m_startOffset;
}
m_istream->seekg(static_cast<streamoff>(m_startOffset), ios_base::beg);
// parse frame header
m_firstFrame.parseHeader(m_reader);
m_format = Mpeg4AudioObjectIds::idToMediaFormat(m_firstFrame.mpeg4AudioObjectId());
m_channelCount = Mpeg4ChannelConfigs::channelCount(m_channelConfig = m_firstFrame.mpeg4ChannelConfig());
std::uint8_t sampleRateIndex = m_firstFrame.mpeg4SamplingFrequencyIndex();
m_samplingFrequency = sampleRateIndex < sizeof(mpeg4SamplingFrequencyTable) ? mpeg4SamplingFrequencyTable[sampleRateIndex] : 0;
}
} // namespace TagParser