TsMuxer.cpp 5.32 KB
Newer Older
xiongziliang committed
1
/*
2 3
 * MIT License
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * 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.
 */

#include "TsMuxer.h"
28
#if defined(ENABLE_HLS)
29
#include "mpeg-ts-proto.h"
30
#include "mpeg-ts.h"
31 32 33 34 35 36 37 38 39 40 41 42 43

namespace mediakit {

TsMuxer::TsMuxer() {
    init();
}

TsMuxer::~TsMuxer() {
    uninit();
}

void TsMuxer::addTrack(const Track::Ptr &track) {
    switch (track->getCodecId()){
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
        case CodecH264: {
            track_info info;
            info.track_id = mpeg_ts_add_stream(_context, PSI_STREAM_H264, nullptr, 0);
            _codec_to_trackid[track->getCodecId()] = info;
        } break;
        case CodecH265: {
            track_info info;
            info.track_id = mpeg_ts_add_stream(_context, PSI_STREAM_H265, nullptr, 0);
            _codec_to_trackid[track->getCodecId()] = info;
        }break;
        case CodecAAC: {
            track_info info;
            info.track_id = mpeg_ts_add_stream(_context, PSI_STREAM_AAC, nullptr, 0);
            _codec_to_trackid[track->getCodecId()] = info;
        }break;
59 60 61 62 63 64
        default:
            break;
    }
}

void TsMuxer::inputFrame(const Frame::Ptr &frame) {
65 66
    auto it = _codec_to_trackid.find(frame->getCodecId());
    if(it == _codec_to_trackid.end()){
67 68
        return;
    }
69 70 71 72
    //mp4文件时间戳需要从0开始
    auto &track_info = it->second;
    int64_t dts_out, pts_out;

73 74 75
    switch (frame->getCodecId()){
        case CodecH265:
        case CodecH264: {
xiongziliang committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

            Buffer::Ptr merged_frame ;
            if(frame->configFrame()){
                //配置帧,缓存后直接返回,以便下次输入关键帧时使用
                _config_frame_cache.append("\x00\x00\x00\x01",4);
                _config_frame_cache.append(frame->data() + frame->prefixSize(),frame->size() - frame->prefixSize());
                break;
            }

            if(frame->keyFrame()){
                //关键帧
                if(!_config_frame_cache.empty()){
                    //有配置帧,那么配置帧合并关键帧后输入ts打包
                    _config_frame_cache.append("\x00\x00\x00\x01",4);
                    _config_frame_cache.append(frame->data() + frame->prefixSize(),frame->size() - frame->prefixSize());
                    merged_frame = std::make_shared<BufferString>(std::move(_config_frame_cache));
                    _config_frame_cache.clear();
                }else{
                    //这是非第一个的关键帧(h265有多种关键帧)
                    merged_frame = frame;
96
                }
xiongziliang committed
97 98 99 100 101
            }else{
                //这里是普通帧,例如B/P,
                merged_frame = frame;
                //sps、pps这些配置帧清空掉
                _config_frame_cache.clear();
102
            }
xiongziliang committed
103 104 105 106 107

            //输入到ts文件
            track_info.stamp.revise(frame->dts(),frame->pts(),dts_out,pts_out);
            _timestamp = dts_out;
            mpeg_ts_write(_context, track_info.track_id, frame->keyFrame() ? 0x0001 : 0, pts_out * 90LL, dts_out * 90LL, merged_frame->data(),  merged_frame->size());
108 109 110
        }
            break;
        default: {
111 112 113
            track_info.stamp.revise(frame->dts(),frame->pts(),dts_out,pts_out);
            _timestamp = dts_out;
            mpeg_ts_write(_context, track_info.track_id, frame->keyFrame() ? 0x0001 : 0, pts_out * 90LL, dts_out * 90LL, frame->data(), frame->size());
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
        }
            break;
    }
}

void TsMuxer::resetTracks() {
    uninit();
    init();
}

void TsMuxer::init() {
    static mpeg_ts_func_t s_func= {
            [](void* param, size_t bytes){
                TsMuxer *muxer = (TsMuxer *)param;
                assert(sizeof(TsMuxer::_tsbuf) >= bytes);
                return (void *)muxer->_tsbuf;
            },
            [](void* param, void* packet){
                //do nothing
            },
            [](void* param, const void* packet, size_t bytes){
                TsMuxer *muxer = (TsMuxer *)param;
                muxer->onTs(packet, bytes,muxer->_timestamp,0);
            }
    };
    if(_context == nullptr){
        _context = mpeg_ts_create(&s_func,this);
    }
}

void TsMuxer::uninit() {
    if(_context){
        mpeg_ts_destroy(_context);
        _context = nullptr;
    }
149
    _codec_to_trackid.clear();
150 151
}

152 153 154
}//namespace mediakit

#endif// defined(ENABLE_HLS)