ZLMediaKit/src/RTP/AACRtpCodec.cpp

132 lines
4.1 KiB
C++
Raw Normal View History

2018-10-18 23:48:00 +08:00
//
// Created by xzl on 2018/10/18.
//
2018-10-21 21:21:14 +08:00
#include "AACRtpCodec.h"
2018-10-18 23:48:00 +08:00
2018-10-21 21:45:44 +08:00
AACRtpEncoder::AACRtpEncoder(uint32_t ui32Ssrc,
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved) :
2018-10-23 11:09:21 +08:00
RtpEncoder(ui32Ssrc,
ui32MtuSize,
ui32SampleRate,
ui8PlayloadType,
ui8Interleaved) {
2018-10-21 21:45:44 +08:00
}
2018-10-23 11:09:21 +08:00
void AACRtpEncoder::inputFrame(const Frame::Ptr &frame, bool key_pos) {
RtpCodec::inputFrame(frame, false);
2018-10-18 23:48:00 +08:00
2018-10-21 21:45:44 +08:00
GET_CONFIG_AND_REGISTER(uint32_t, cycleMS, Config::Rtp::kCycleMS);
2018-10-18 23:48:00 +08:00
auto uiStamp = frame->stamp();
2018-10-21 22:24:24 +08:00
auto pcData = frame->data() + frame->prefixSize();
auto iLen = frame->size() - frame->prefixSize();
2018-10-18 23:48:00 +08:00
uiStamp %= cycleMS;
char *ptr = (char *) pcData;
int iSize = iLen;
2018-10-21 21:45:44 +08:00
while (iSize > 0) {
2018-10-18 23:48:00 +08:00
if (iSize <= m_ui32MtuSize - 20) {
m_aucSectionBuf[0] = 0;
m_aucSectionBuf[1] = 16;
m_aucSectionBuf[2] = iLen >> 5;
m_aucSectionBuf[3] = (iLen & 0x1F) << 3;
memcpy(m_aucSectionBuf + 4, ptr, iSize);
makeAACRtp(m_aucSectionBuf, iSize + 4, true, uiStamp);
break;
}
m_aucSectionBuf[0] = 0;
m_aucSectionBuf[1] = 16;
m_aucSectionBuf[2] = (iLen) >> 5;
m_aucSectionBuf[3] = (iLen & 0x1F) << 3;
memcpy(m_aucSectionBuf + 4, ptr, m_ui32MtuSize - 20);
makeAACRtp(m_aucSectionBuf, m_ui32MtuSize - 16, false, uiStamp);
ptr += (m_ui32MtuSize - 20);
iSize -= (m_ui32MtuSize - 20);
}
}
2018-10-21 21:45:44 +08:00
void AACRtpEncoder::makeAACRtp(const void *pData, unsigned int uiLen, bool bMark, uint32_t uiStamp) {
2018-10-18 23:48:00 +08:00
uint16_t u16RtpLen = uiLen + 12;
m_ui32TimeStamp = (m_ui32SampleRate / 1000) * uiStamp;
uint32_t ts = htonl(m_ui32TimeStamp);
uint16_t sq = htons(m_ui16Sequence);
uint32_t sc = htonl(m_ui32Ssrc);
auto pRtppkt = obtainRtp();
auto &rtppkt = *(pRtppkt.get());
unsigned char *pucRtp = rtppkt.payload;
pucRtp[0] = '$';
pucRtp[1] = m_ui8Interleaved;
pucRtp[2] = u16RtpLen >> 8;
pucRtp[3] = u16RtpLen & 0x00FF;
pucRtp[4] = 0x80;
pucRtp[5] = (bMark << 7) | m_ui8PlayloadType;
memcpy(&pucRtp[6], &sq, 2);
memcpy(&pucRtp[8], &ts, 4);
//ssrc
memcpy(&pucRtp[12], &sc, 4);
//playload
memcpy(&pucRtp[16], pData, uiLen);
rtppkt.PT = m_ui8PlayloadType;
rtppkt.interleaved = m_ui8Interleaved;
rtppkt.mark = bMark;
rtppkt.length = uiLen + 16;
rtppkt.sequence = m_ui16Sequence;
rtppkt.timeStamp = m_ui32TimeStamp;
rtppkt.ssrc = m_ui32Ssrc;
rtppkt.type = TrackAudio;
rtppkt.offset = 16;
RtpCodec::inputRtp(pRtppkt, false);
m_ui16Sequence++;
}
/////////////////////////////////////////////////////////////////////////////////////
2018-10-21 22:24:24 +08:00
AACRtpDecoder::AACRtpDecoder(uint32_t ui32SampleRate) {
m_adts = obtainFrame();
m_sampleRate = ui32SampleRate;
}
2018-10-23 11:09:21 +08:00
AACFrame::Ptr AACRtpDecoder::obtainFrame() {
2018-10-21 22:24:24 +08:00
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
auto frame = m_framePool.obtain();
frame->aac_frame_length = 7;
frame->iPrefixSize = 7;
return frame;
}
2018-10-18 23:48:00 +08:00
2018-10-21 21:45:44 +08:00
void AACRtpDecoder::inputRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
2018-10-21 22:24:24 +08:00
RtpCodec::inputRtp(rtppack, false);
2018-10-18 23:48:00 +08:00
2018-10-21 21:21:14 +08:00
int length = rtppack->length - rtppack->offset;
2018-10-23 11:09:21 +08:00
if (m_adts->aac_frame_length + length - 4 > sizeof(AACFrame::buffer)) {
2018-10-18 23:48:00 +08:00
m_adts->aac_frame_length = 7;
2018-10-21 21:21:14 +08:00
WarnL << "aac负载数据太长";
2018-10-21 21:27:05 +08:00
return;
2018-10-18 23:48:00 +08:00
}
2018-10-21 21:27:05 +08:00
memcpy(m_adts->buffer + m_adts->aac_frame_length, rtppack->payload + rtppack->offset + 4, length - 4);
2018-10-18 23:48:00 +08:00
m_adts->aac_frame_length += (length - 4);
2018-10-21 21:21:14 +08:00
if (rtppack->mark == true) {
m_adts->sequence = rtppack->sequence;
//todo(xzl) 此处完成时间戳转换
2018-10-21 22:24:24 +08:00
m_adts->timeStamp = rtppack->timeStamp * (1000.0 / m_sampleRate);
2018-10-18 23:48:00 +08:00
writeAdtsHeader(*m_adts, m_adts->buffer);
2018-10-21 21:21:14 +08:00
onGetAdts(m_adts);
2018-10-18 23:48:00 +08:00
}
}
2018-10-23 11:09:21 +08:00
void AACRtpDecoder::onGetAdts(const AACFrame::Ptr &frame) {
2018-10-21 21:27:05 +08:00
//写入环形缓存
2018-10-23 11:09:21 +08:00
RtpCodec::inputFrame(frame, false);
2018-10-21 22:24:24 +08:00
m_adts = obtainFrame();
2018-10-18 23:48:00 +08:00
}
2018-10-21 21:21:14 +08:00
2018-10-21 21:45:44 +08:00
2018-10-21 22:24:24 +08:00