AACRtp.cpp 4.31 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
9
 */
xiongziliang committed
10

xiongziliang committed
11
#include "AACRtp.h"
12
#define ADTS_HEADER_LEN 7
13

xiongziliang committed
14 15
namespace mediakit{

xiongziliang committed
16 17 18 19 20
AACRtpEncoder::AACRtpEncoder(uint32_t ui32Ssrc,
                             uint32_t ui32MtuSize,
                             uint32_t ui32SampleRate,
                             uint8_t ui8PlayloadType,
                             uint8_t ui8Interleaved) :
21 22 23 24
        RtpInfo(ui32Ssrc,
                ui32MtuSize,
                ui32SampleRate,
                ui8PlayloadType,
25
                ui8Interleaved){
xiongziliang committed
26 27
}

28
void AACRtpEncoder::inputFrame(const Frame::Ptr &frame) {
29
    GET_CONFIG(uint32_t, cycleMS, Rtp::kCycleMS);
30
    auto uiStamp = frame->dts();
31 32
    auto pcData = frame->data() + frame->prefixSize();
    auto iLen = frame->size() - frame->prefixSize();
33 34 35 36

    uiStamp %= cycleMS;
    char *ptr = (char *) pcData;
    int iSize = iLen;
xiongziliang committed
37
    while (iSize > 0) {
38 39 40 41 42 43 44
        if (iSize <= _ui32MtuSize - 20) {
            _aucSectionBuf[0] = 0;
            _aucSectionBuf[1] = 16;
            _aucSectionBuf[2] = iLen >> 5;
            _aucSectionBuf[3] = (iLen & 0x1F) << 3;
            memcpy(_aucSectionBuf + 4, ptr, iSize);
            makeAACRtp(_aucSectionBuf, iSize + 4, true, uiStamp);
45 46
            break;
        }
47 48 49 50 51 52 53 54
        _aucSectionBuf[0] = 0;
        _aucSectionBuf[1] = 16;
        _aucSectionBuf[2] = (iLen) >> 5;
        _aucSectionBuf[3] = (iLen & 0x1F) << 3;
        memcpy(_aucSectionBuf + 4, ptr, _ui32MtuSize - 20);
        makeAACRtp(_aucSectionBuf, _ui32MtuSize - 16, false, uiStamp);
        ptr += (_ui32MtuSize - 20);
        iSize -= (_ui32MtuSize - 20);
55 56 57
    }
}

xiongziliang committed
58 59
void AACRtpEncoder::makeAACRtp(const void *data, unsigned int len, bool mark, uint32_t uiStamp) {
    RtpCodec::inputRtp(makeRtp(getTrackType(),data,len,mark,uiStamp), false);
60 61 62
}

/////////////////////////////////////////////////////////////////////////////////////
63 64 65 66 67 68 69 70 71 72

AACRtpDecoder::AACRtpDecoder(const Track::Ptr &track){
    auto aacTrack = dynamic_pointer_cast<AACTrack>(track);
    if(!aacTrack || !aacTrack->ready()){
        WarnL << "该aac track无效!";
    }else{
        _aac_cfg = aacTrack->getAacCfg();
    }
    _adts = obtainFrame();
}
73
AACRtpDecoder::AACRtpDecoder() {
74
    _adts = obtainFrame();
75 76
}

77
AACFrame::Ptr AACRtpDecoder::obtainFrame() {
78
    //从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
79
    auto frame = ResourcePoolHelper<AACFrame>::obtainObj();
80 81
    frame->aac_frame_length = ADTS_HEADER_LEN;
    frame->iPrefixSize = ADTS_HEADER_LEN;
82 83 84
    if(frame->syncword == 0 && !_aac_cfg.empty()) {
        makeAdtsHeader(_aac_cfg,*frame);
    }
85 86
    return frame;
}
87

xiongziliang committed
88
bool AACRtpDecoder::inputRtp(const RtpPacket::Ptr &rtppack, bool key_pos) {
89 90 91 92 93 94 95 96 97 98 99 100
    //rtp数据开始部分
    uint8_t *ptr = (uint8_t *) rtppack->data() + rtppack->offset;
    //rtp数据末尾
    const uint8_t *end = (uint8_t *) rtppack->data() + rtppack->size();

    //首2字节表示Au-Header的个数,单位bit,所以除以16得到Au-Header个数
    const uint16_t au_header_count = ((ptr[0] << 8) | ptr[1]) >> 4;
    //忽略Au-Header区
    ptr += 2 + au_header_count * 2;

    static const uint32_t max_size = sizeof(AACFrame::buffer) - ADTS_HEADER_LEN;
    while (ptr < end) {
xiongziliang committed
101 102 103 104
        auto size = (uint32_t) (end - ptr);
        if(size > max_size){
            size = max_size;
        }
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
        if (_adts->aac_frame_length + size > sizeof(AACFrame::buffer)) {
            //数据太多了,先清空
            flushData();
        }
        //追加aac数据
        memcpy(_adts->buffer + _adts->aac_frame_length, ptr, size);
        _adts->aac_frame_length += size;
        _adts->timeStamp = rtppack->timeStamp;
        ptr += size;
    }

    if (rtppack->mark) {
        //最后一个rtp分片
        flushData();
    }
xiongziliang committed
120
    return false;
121 122
}

123 124 125 126 127 128 129 130

void AACRtpDecoder::flushData() {
    if(_adts->aac_frame_length == ADTS_HEADER_LEN){
        //没有有效数据
        return;
    }
    writeAdtsHeader(*_adts, _adts->buffer);
    RtpCodec::inputFrame(_adts);
131
    _adts = obtainFrame();
132
}
xiongziliang committed
133

134

xiongziliang committed
135
}//namespace mediakit
xiongziliang committed
136

137 138