RtmpDemuxer.cpp 4.64 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
* MIT License
*
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
xzl committed
26

27
#include "RtmpDemuxer.h"
28
#include "Extension/Factory.h"
xzl committed
29

xiongziliang committed
30
namespace mediakit {
xzl committed
31

32

33
RtmpDemuxer::RtmpDemuxer(const AMFValue &val) {
xiongziliang committed
34 35 36 37 38 39 40 41 42 43 44
    try {
        makeVideoTrack(val["videocodecid"]);
        makeAudioTrack(val["audiocodecid"]);
        val.object_for_each([&](const string &key, const AMFValue &val) {
            if (key == "duration") {
                _fDuration = val.as_number();
                return;
            }
        });
    }catch (std::exception &ex){
        WarnL << ex.what();
xzl committed
45 46 47
    }
}

48 49 50 51
int RtmpDemuxer::getTrackCount(const AMFValue &metedata) {
    return (int)(metedata["videocodecid"].type() != AMF_NULL) + (int)(metedata["audiocodecid"].type() != AMF_NULL);
}

52
bool RtmpDemuxer::inputRtmp(const RtmpPacket::Ptr &pkt) {
53
    switch (pkt->typeId) {
xiongziliang committed
54 55 56
        case MSG_VIDEO: {
            if(_videoRtmpDecoder){
                return _videoRtmpDecoder->inputRtmp(pkt, true);
57
            }
58 59
            if(!_tryedGetVideoTrack){
                _tryedGetVideoTrack = true;
xiongziliang committed
60 61
                auto codec = AMFValue(pkt->getMediaType());
                makeVideoTrack(codec);
62 63 64 65 66
            }
            return false;
        }

        case MSG_AUDIO: {
xiongziliang committed
67 68 69
            if(_audioRtmpDecoder){
                _audioRtmpDecoder->inputRtmp(pkt, false);
                return false;
70
            }
71 72
            if(!_tryedGetAudioTrack) {
                _tryedGetAudioTrack = true;
xiongziliang committed
73 74
                auto codec = AMFValue(pkt->getMediaType());
                makeAudioTrack(codec);
75 76 77 78 79 80
            }
            return false;
        }
        default:
            return false;
    }
xzl committed
81 82
}

xiongziliang committed
83 84 85 86 87
void RtmpDemuxer::makeVideoTrack(const AMFValue &videoCodec) {
    //生成Track对象
    _videoTrack = dynamic_pointer_cast<VideoTrack>(Factory::getTrackByAmf(videoCodec));
    if (_videoTrack) {
        //生成rtmpCodec对象以便解码rtmp
88
        _videoRtmpDecoder = Factory::getRtmpCodecByTrack(_videoTrack);
xiongziliang committed
89 90
        if (_videoRtmpDecoder) {
            //设置rtmp解码器代理,生成的frame写入该Track
91
            _videoRtmpDecoder->addDelegate(_videoTrack);
xiongziliang committed
92 93 94 95 96
        } else {
            //找不到相应的rtmp解码器,该track无效
            _videoTrack.reset();
        }
    }
xzl committed
97 98
}

xiongziliang committed
99 100 101 102 103
void RtmpDemuxer::makeAudioTrack(const AMFValue &audioCodec) {
    //生成Track对象
    _audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getTrackByAmf(audioCodec));
    if (_audioTrack) {
        //生成rtmpCodec对象以便解码rtmp
104
        _audioRtmpDecoder = Factory::getRtmpCodecByTrack(_audioTrack);
xiongziliang committed
105 106
        if (_audioRtmpDecoder) {
            //设置rtmp解码器代理,生成的frame写入该Track
107
            _audioRtmpDecoder->addDelegate(_audioTrack);
xiongziliang committed
108 109 110 111 112
        } else {
            //找不到相应的rtmp解码器,该track无效
            _audioTrack.reset();
        }
    }
xzl committed
113
}
xiongziliang committed
114 115 116 117 118 119 120 121

vector<Track::Ptr> RtmpDemuxer::getTracks() const {
    vector<Track::Ptr> ret;
    if(_videoTrack){
        ret.emplace_back(_videoTrack);
    }
    if(_audioTrack){
        ret.emplace_back(_audioTrack);
xiongziliang committed
122
    }
xiongziliang committed
123 124
    return ret;
}
xzl committed
125

xiongziliang committed
126
bool RtmpDemuxer::isInited() const {
127 128 129 130 131 132
    bool videoReady ,auidoReady;

    if(_videoTrack){
        videoReady = _videoTrack->ready();
    }else{
        videoReady = _tryedGetVideoTrack || _tryedGetAudioTrack;
xiongziliang committed
133
    }
134 135 136 137 138

    if(_audioTrack){
        auidoReady = _audioTrack->ready();
    }else{
        auidoReady = _tryedGetVideoTrack || _tryedGetAudioTrack;
xiongziliang committed
139
    }
140 141

    return videoReady && auidoReady;
xzl committed
142
}
xiongziliang committed
143 144 145

float RtmpDemuxer::getDuration() const {
    return _fDuration;
xzl committed
146 147 148
}


xiongziliang committed
149
} /* namespace mediakit */