MP4Muxer.cpp 11.1 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
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.
xiongziliang committed
9 10
 */

xiongziliang committed
11
#ifdef ENABLE_MP4
xiongziliang committed
12 13 14 15
#include "MP4Muxer.h"
#include "Util/File.h"
namespace mediakit{

xiongziliang committed
16 17 18 19
MP4Muxer::MP4Muxer(const char *file) {
    _file_name = file;
    openMP4();
}
xiongziliang committed
20

xiongziliang committed
21 22 23 24 25 26 27 28 29 30 31 32
MP4Muxer::~MP4Muxer() {
    closeMP4();
}

void MP4Muxer::openMP4(){
    closeMP4();
    openFile(_file_name.data(), "wb+");
    _mov_writter = createWriter();
}
void MP4Muxer::closeMP4(){
    _mov_writter = nullptr;
    closeFile();
xiongziliang committed
33 34
}

xiongziliang committed
35 36 37
void MP4Muxer::resetTracks() {
    _codec_to_trackid.clear();
    _started = false;
38
    _have_video = false;
xiongziliang committed
39
    openMP4();
xiongziliang committed
40
}
xiongziliang committed
41

xiongziliang committed
42
void MP4Muxer::inputFrame(const Frame::Ptr &frame) {
xiongziliang committed
43 44
    auto it = _codec_to_trackid.find(frame->getCodecId());
    if(it == _codec_to_trackid.end()){
45
        //该Track不存在或初始化失败
xiongziliang committed
46 47 48
        return;
    }

49
    if (!_started) {
xiongziliang committed
50
        //还没开始
51 52 53 54 55 56 57 58 59
        if (!_have_video) {
            _started = true;
        } else {
            if (frame->getTrackType() != TrackVideo || !frame->keyFrame()) {
                //如果首帧是音频或者是视频但是不是i帧,那么不能开始写文件
                return;
            }
            //开始写文件
            _started = true;
60 61 62
        }
    }

63 64
    //mp4文件时间戳需要从0开始
    auto &track_info = it->second;
65
    int64_t dts_out, pts_out;
66

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    switch (frame->getCodecId()) {
        case CodecH264:
        case CodecH265: {
            //这里的代码逻辑是让SPS、PPS、IDR这些时间戳相同的帧打包到一起当做一个帧处理,
            if (!_frameCached.empty() && _frameCached.back()->dts() != frame->dts()) {
                Frame::Ptr back = _frameCached.back();
                //求相对时间戳
                track_info.stamp.revise(back->dts(), back->pts(), dts_out, pts_out);

                if (_frameCached.size() != 1) {
                    //缓存中有多帧,需要按照mp4格式合并一起
                    string merged;
                    _frameCached.for_each([&](const Frame::Ptr &frame) {
                        uint32_t nalu_size = frame->size() - frame->prefixSize();
                        nalu_size = htonl(nalu_size);
                        merged.append((char *) &nalu_size, 4);
                        merged.append(frame->data() + frame->prefixSize(), frame->size() - frame->prefixSize());
                    });
                    mov_writer_write_l(_mov_writter.get(),
                                       track_info.track_id,
                                       merged.data(),
                                       merged.size(),
                                       pts_out,
                                       dts_out,
                                       back->keyFrame() ? MOV_AV_FLAG_KEYFREAME : 0,
                                       1/*我们合并时已经生成了4个字节的MP4格式start code*/);
                } else {
                    //缓存中只有一帧视频
                    mov_writer_write_l(_mov_writter.get(),
                                       track_info.track_id,
                                       back->data() + back->prefixSize(),
                                       back->size() - back->prefixSize(),
                                       pts_out,
                                       dts_out,
                                       back->keyFrame() ? MOV_AV_FLAG_KEYFREAME : 0,
                                       0/*需要生成头4个字节的MP4格式start code*/);
                }
                _frameCached.clear();
            }
            //缓存帧,时间戳相同的帧合并一起写入mp4
            _frameCached.emplace_back(Frame::getCacheAbleFrame(frame));
        }
            break;
        default: {
            track_info.stamp.revise(frame->dts(), frame->pts(), dts_out, pts_out);
            mov_writer_write_l(_mov_writter.get(),
                               track_info.track_id,
                               frame->data() + frame->prefixSize(),
                               frame->size() - frame->prefixSize(),
                               pts_out,
                               dts_out,
                               frame->keyFrame() ? MOV_AV_FLAG_KEYFREAME : 0,
                               1/*aac或其他类型frame不用添加4个nalu_size的字节*/);
        }
            break;
    }
xiongziliang committed
123 124
}

xiongziliang committed
125 126 127 128 129 130 131 132 133 134 135 136
static uint8_t getObject(CodecId codecId){
    switch (codecId){
        case CodecG711A : return MOV_OBJECT_G711a;
        case CodecG711U : return MOV_OBJECT_G711u;
        case CodecOpus : return MOV_OBJECT_OPUS;
        case CodecAAC : return MOV_OBJECT_AAC;
        case CodecH264 : return MOV_OBJECT_H264;
        case CodecH265 : return MOV_OBJECT_HEVC;
        default : return 0;
    }
}

xiongziliang committed
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
void MP4Muxer::stampSync(){
    if(_codec_to_trackid.size() < 2){
        return;
    }

    Stamp *audio = nullptr, *video = nullptr;
    for(auto &pr : _codec_to_trackid){
        switch (getTrackType((CodecId) pr.first)){
            case TrackAudio : audio = &pr.second.stamp; break;
            case TrackVideo : video = &pr.second.stamp; break;
            default : break;
        }
    }

    if(audio && video){
        //音频时间戳同步于视频,因为音频时间戳被修改后不影响播放
        audio->syncTo(*video);
    }
}

xiongziliang committed
157
void MP4Muxer::addTrack(const Track::Ptr &track) {
xiongziliang committed
158 159 160 161 162 163 164 165 166 167 168
    auto mp4_object = getObject(track->getCodecId());
    if (!mp4_object) {
        WarnL << "MP4录制不支持该编码格式:" << track->getCodecName();
        return;
    }

    if (!track->ready()) {
        WarnL << "Track[" << track->getCodecName() << "]未就绪";
        return;
    }

xiongziliang committed
169
    switch (track->getCodecId()) {
170
        case CodecG711A:
xiongziliang committed
171 172 173
        case CodecG711U:
        case CodecOpus: {
            auto audio_track = dynamic_pointer_cast<AudioTrack>(track);
174
            if (!audio_track) {
xiongziliang committed
175
                WarnL << "不是音频Track:" << track->getCodecName();
176 177
                return;
            }
xiongziliang committed
178

179
            auto track_id = mov_writer_add_audio(_mov_writter.get(),
xiongziliang committed
180
                                                 mp4_object,
181 182 183 184 185
                                                 audio_track->getAudioChannel(),
                                                 audio_track->getAudioSampleBit() * audio_track->getAudioChannel(),
                                                 audio_track->getAudioSampleRate(),
                                                 nullptr, 0);
            if (track_id < 0) {
xiongziliang committed
186
                WarnL << "添加Track[" << track->getCodecName() << "]失败:" << track_id;
187 188 189 190 191 192
                return;
            }
            _codec_to_trackid[track->getCodecId()].track_id = track_id;
        }
            break;

xiongziliang committed
193
        case CodecAAC: {
194 195
            auto audio_track = dynamic_pointer_cast<AACTrack>(track);
            if (!audio_track) {
xiongziliang committed
196 197 198
                WarnL << "不是AAC Track";
                return;
            }
xiongziliang committed
199

xiongziliang committed
200
            auto track_id = mov_writer_add_audio(_mov_writter.get(),
xiongziliang committed
201
                                                 mp4_object,
202 203 204
                                                 audio_track->getAudioChannel(),
                                                 audio_track->getAudioSampleBit() * audio_track->getAudioChannel(),
                                                 audio_track->getAudioSampleRate(),
205 206
                                                 audio_track->getAacCfg().data(),
                                                 audio_track->getAacCfg().size());
207 208 209 210
            if(track_id < 0){
                WarnL << "添加AAC Track失败:" << track_id;
                return;
            }
xiongziliang committed
211
            _codec_to_trackid[track->getCodecId()].track_id = track_id;
xiongziliang committed
212 213 214 215 216 217 218 219 220
        }
            break;
        case CodecH264: {
            auto h264_track = dynamic_pointer_cast<H264Track>(track);
            if (!h264_track) {
                WarnL << "不是H264 Track";
                return;
            }

221
            struct mpeg4_avc_t avc = {0};
xiongziliang committed
222 223
            string sps_pps = string("\x00\x00\x00\x01", 4) + h264_track->getSps() +
                             string("\x00\x00\x00\x01", 4) + h264_track->getPps();
xiongziliang committed
224
            h264_annexbtomp4(&avc, sps_pps.data(), sps_pps.size(), NULL, 0, NULL, NULL);
xiongziliang committed
225 226 227 228 229 230 231 232 233

            uint8_t extra_data[1024];
            int extra_data_size = mpeg4_avc_decoder_configuration_record_save(&avc, extra_data, sizeof(extra_data));
            if (extra_data_size == -1) {
                WarnL << "生成H264 extra_data 失败";
                return;
            }

            auto track_id = mov_writer_add_video(_mov_writter.get(),
xiongziliang committed
234
                                                 mp4_object,
xiongziliang committed
235 236 237 238
                                                 h264_track->getVideoWidth(),
                                                 h264_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
239 240 241 242 243

            if(track_id < 0){
                WarnL << "添加H264 Track失败:" << track_id;
                return;
            }
xiongziliang committed
244
            _codec_to_trackid[track->getCodecId()].track_id = track_id;
245
            _have_video = true;
xiongziliang committed
246 247 248 249 250 251 252
        }
            break;
        case CodecH265: {
            auto h265_track = dynamic_pointer_cast<H265Track>(track);
            if (!h265_track) {
                WarnL << "不是H265 Track";
                return;
253
            }
xiongziliang committed
254

255
            struct mpeg4_hevc_t hevc = {0};
xiongziliang committed
256 257 258
            string vps_sps_pps = string("\x00\x00\x00\x01", 4) + h265_track->getVps() +
                                 string("\x00\x00\x00\x01", 4) + h265_track->getSps() +
                                 string("\x00\x00\x00\x01", 4) + h265_track->getPps();
xiongziliang committed
259
            h265_annexbtomp4(&hevc, vps_sps_pps.data(), vps_sps_pps.size(), NULL, 0, NULL, NULL);
xiongziliang committed
260 261 262 263 264 265 266 267 268

            uint8_t extra_data[1024];
            int extra_data_size = mpeg4_hevc_decoder_configuration_record_save(&hevc, extra_data, sizeof(extra_data));
            if (extra_data_size == -1) {
                WarnL << "生成H265 extra_data 失败";
                return;
            }

            auto track_id = mov_writer_add_video(_mov_writter.get(),
xiongziliang committed
269
                                                 mp4_object,
xiongziliang committed
270 271 272 273
                                                 h265_track->getVideoWidth(),
                                                 h265_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
274 275 276 277
            if(track_id < 0){
                WarnL << "添加H265 Track失败:" << track_id;
                return;
            }
xiongziliang committed
278
            _codec_to_trackid[track->getCodecId()].track_id = track_id;
279
            _have_video = true;
xiongziliang committed
280 281
        }
            break;
xiongziliang committed
282 283

        default: WarnL << "MP4录制不支持该编码格式:" << track->getCodecName(); break;
xiongziliang committed
284
    }
xiongziliang committed
285 286 287

    //尝试音视频同步
    stampSync();
xiongziliang committed
288 289 290
}

}//namespace mediakit
xiongziliang committed
291
#endif//#ifdef ENABLE_MP4