MP4Muxer.cpp 11.3 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
#include "MP4Muxer.h"
#include "Util/File.h"
14
#include "Extension/H264.h"
xiongziliang committed
15 16
namespace mediakit{

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

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

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

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

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

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

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

68
    switch (frame->getCodecId()) {
69 70 71 72 73 74
        case CodecH264: {
            int type = H264_TYPE(*((uint8_t *)frame->data() + frame->prefixSize()));
            if(type == H264Frame::NAL_SEI){
                break;
            }
        }
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 123 124 125 126 127 128
        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
129 130
}

xiongziliang committed
131 132 133 134 135 136 137 138 139 140 141 142
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
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
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
163
void MP4Muxer::addTrack(const Track::Ptr &track) {
xiongziliang committed
164 165 166 167 168 169 170 171 172 173 174
    auto mp4_object = getObject(track->getCodecId());
    if (!mp4_object) {
        WarnL << "MP4录制不支持该编码格式:" << track->getCodecName();
        return;
    }

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

xiongziliang committed
175
    switch (track->getCodecId()) {
176
        case CodecG711A:
xiongziliang committed
177 178 179
        case CodecG711U:
        case CodecOpus: {
            auto audio_track = dynamic_pointer_cast<AudioTrack>(track);
180
            if (!audio_track) {
xiongziliang committed
181
                WarnL << "不是音频Track:" << track->getCodecName();
182 183
                return;
            }
xiongziliang committed
184

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

xiongziliang committed
199
        case CodecAAC: {
200 201
            auto audio_track = dynamic_pointer_cast<AACTrack>(track);
            if (!audio_track) {
xiongziliang committed
202 203 204
                WarnL << "不是AAC Track";
                return;
            }
xiongziliang committed
205

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

227
            struct mpeg4_avc_t avc = {0};
xiongziliang committed
228 229
            string sps_pps = string("\x00\x00\x00\x01", 4) + h264_track->getSps() +
                             string("\x00\x00\x00\x01", 4) + h264_track->getPps();
xiongziliang committed
230
            h264_annexbtomp4(&avc, sps_pps.data(), sps_pps.size(), NULL, 0, NULL, NULL);
xiongziliang committed
231 232 233 234 235 236 237 238 239

            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
240
                                                 mp4_object,
xiongziliang committed
241 242 243 244
                                                 h264_track->getVideoWidth(),
                                                 h264_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
245 246 247 248 249

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

261
            struct mpeg4_hevc_t hevc = {0};
xiongziliang committed
262 263 264
            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
265
            h265_annexbtomp4(&hevc, vps_sps_pps.data(), vps_sps_pps.size(), NULL, 0, NULL, NULL);
xiongziliang committed
266 267 268 269 270 271 272 273 274

            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
275
                                                 mp4_object,
xiongziliang committed
276 277 278 279
                                                 h265_track->getVideoWidth(),
                                                 h265_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
280 281 282 283
            if(track_id < 0){
                WarnL << "添加H265 Track失败:" << track_id;
                return;
            }
xiongziliang committed
284
            _codec_to_trackid[track->getCodecId()].track_id = track_id;
285
            _have_video = true;
xiongziliang committed
286 287
        }
            break;
xiongziliang committed
288 289

        default: WarnL << "MP4录制不支持该编码格式:" << track->getCodecName(); break;
xiongziliang committed
290
    }
xiongziliang committed
291 292 293

    //尝试音视频同步
    stampSync();
xiongziliang committed
294 295 296
}

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