zoneminder/src/zm_rtsp_server_fifo_adts_so...

52 lines
1.5 KiB
C++

/* ---------------------------------------------------------------------------
**
** ADTS_FifoSource.cpp
**
** ADTS Live555 source
**
** -------------------------------------------------------------------------*/
#include "zm_logger.h"
#include "zm_rtsp_server_fifo_adts_source.h"
#include <iomanip>
#include <sstream>
#if HAVE_RTSP_SERVER
// ---------------------------------
// ADTS ZoneMinder FramedSource
// ---------------------------------
//
ADTS_ZoneMinderFifoSource::ADTS_ZoneMinderFifoSource(
std::shared_ptr<xop::RtspServer>& rtspServer,
xop::MediaSessionId sessionId,
xop::MediaChannelId channelId,
std::string fifo
)
:
ZoneMinderFifoAudioSource(rtspServer, sessionId, channelId, fifo)
{
#if 0
int profile = 0;
unsigned char audioSpecificConfig[2];
u_int8_t const audioObjectType = profile + 1;
audioSpecificConfig[0] = (audioObjectType<<3) | (samplingFrequencyIndex>>1);
audioSpecificConfig[1] = (samplingFrequencyIndex<<7) | (channels<<3);
std::ostringstream os;
os <<
"profile-level-id=1;"
"mode=AAC-hbr;sizelength=13;indexlength=3;"
"indexdeltalength=3;config=" << std::hex << std::setw(2) << std::setfill('0') << audioSpecificConfig[0]
<< std::hex << std::setw(2) << std::setfill('0') << audioSpecificConfig[1]
<< "\r\n";
// Construct the 'AudioSpecificConfig', and from it, the corresponding ASCII string:
m_auxLine.assign(os.str());
Debug(1, "m_auxline is %s", m_auxLine.c_str());
#endif
}
#endif // HAVE_RTSP_SERVER