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

#ifdef ENABLE_MP4RECORD

#include "MP4Muxer.h"
#include "Util/File.h"
31
#include "Common/config.h"
xiongziliang committed
32 33 34 35 36 37 38 39 40 41 42

namespace mediakit{

#if defined(_WIN32) || defined(_WIN64)
#define fseek64 _fseeki64
#define ftell64 _ftelli64
#else
#define fseek64 fseek
#define ftell64 ftell
#endif

xiongziliang committed
43
void MP4MuxerBase::init(int flags) {
xiongziliang committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
    static struct mov_buffer_t s_io = {
            [](void* ctx, void* data, uint64_t bytes) {
                MP4MuxerBase *thiz = (MP4MuxerBase *)ctx;
                return thiz->onRead(data,bytes);
            },
            [](void* ctx, const void* data, uint64_t bytes){
                MP4MuxerBase *thiz = (MP4MuxerBase *)ctx;
                return thiz->onWrite(data,bytes);
            },
            [](void* ctx, uint64_t offset) {
                MP4MuxerBase *thiz = (MP4MuxerBase *)ctx;
                return thiz->onSeek(offset);
            },
            [](void* ctx){
                MP4MuxerBase *thiz = (MP4MuxerBase *)ctx;
                return thiz->onTell();
            }
    };
    _mov_writter.reset(mov_writer_create(&s_io,this,flags),[](mov_writer_t *ptr){
        if(ptr){
            mov_writer_destroy(ptr);
        }
    });
}

///////////////////////////////////

void MP4Muxer::onTrackFrame(const Frame::Ptr &frame) {
    if(frame->configFrame()){
        //忽略配置帧
        return;
    }
    auto it = _codec_to_trackid.find(frame->getCodecId());
    if(it == _codec_to_trackid.end()){
78
        //该Track不存在或初始化失败
xiongziliang committed
79 80 81
        return;
    }

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
    int with_nalu_size ;
    switch (frame->getCodecId()){
        case CodecH264:
        case CodecH265:
            //我们输入264、265是没有头四个字节表明数据长度的
            with_nalu_size = 0;
            break;
        default:
            //aac或其他类型frame不用添加4个nalu_size的字节
            with_nalu_size = 1;
            break;
    }

    //mp4文件时间戳需要从0开始
    auto &track_info = it->second;
    if(!track_info.start_dts){
        track_info.start_dts = frame->dts();
    }
    if(!track_info.start_pts){
        track_info.start_pts = frame->pts();
    }

    //相对时间戳
    int dts_inc = frame->dts() - track_info.start_dts;
    int pts_inc = frame->pts() - track_info.start_pts;

xiongziliang committed
108
    mov_writer_write_l(_mov_writter.get(),
109 110 111 112 113 114 115
                       track_info.track_id,
                       frame->data() + frame->prefixSize(),
                       frame->size() - frame->prefixSize(),
                       pts_inc >= 0 ? pts_inc : 0,
                       dts_inc >= 0 ? dts_inc : 0,
                       frame->keyFrame() ? MOV_AV_FLAG_KEYFREAME : 0,
                       with_nalu_size);
xiongziliang committed
116 117 118 119 120 121 122 123 124 125 126 127 128
}

void MP4Muxer::onTrackReady(const Track::Ptr &track) {
    switch (track->getCodecId()) {
        case CodecAAC: {
            auto aac_track = dynamic_pointer_cast<AACTrack>(track);
            if (!aac_track) {
                WarnL << "不是AAC Track";
                return;
            }
            auto track_id = mov_writer_add_audio(_mov_writter.get(),
                                                 MOV_OBJECT_AAC,
                                                 aac_track->getAudioChannel(),
129
                                                 aac_track->getAudioSampleBit() * aac_track->getAudioChannel(),
xiongziliang committed
130 131
                                                 aac_track->getAudioSampleRate(),
                                                 aac_track->getAacCfg().data(), 2);
132 133 134 135 136 137 138
            if(track_id < 0){
                WarnL << "添加AAC Track失败:" << track_id;
                return;
            }
            track_info info;
            info.track_id = track_id;
            _codec_to_trackid[track->getCodecId()] = info;
xiongziliang committed
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
        }
            break;
        case CodecH264: {
            auto h264_track = dynamic_pointer_cast<H264Track>(track);
            if (!h264_track) {
                WarnL << "不是H264 Track";
                return;
            }

            struct mpeg4_avc_t avc;
            string sps_pps = string("\x00\x00\x00\x01", 4) + h264_track->getSps() +
                             string("\x00\x00\x00\x01", 4) + h264_track->getPps();
            h264_annexbtomp4(&avc, sps_pps.data(), sps_pps.size(), NULL, 0, NULL);

            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(),
                                                 MOV_OBJECT_H264,
                                                 h264_track->getVideoWidth(),
                                                 h264_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
166 167 168 169 170 171 172 173

            if(track_id < 0){
                WarnL << "添加H264 Track失败:" << track_id;
                return;
            }
            track_info info;
            info.track_id = track_id;
            _codec_to_trackid[track->getCodecId()] = info;
xiongziliang committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
        }
            break;
        case CodecH265: {
            auto h265_track = dynamic_pointer_cast<H265Track>(track);
            if (!h265_track) {
                WarnL << "不是H265 Track";
                return;
            }

            struct mpeg4_hevc_t hevc;
            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();
            h265_annexbtomp4(&hevc, vps_sps_pps.data(), vps_sps_pps.size(), NULL, 0, NULL);

            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(),
                                                 MOV_OBJECT_HEVC,
                                                 h265_track->getVideoWidth(),
                                                 h265_track->getVideoHeight(),
                                                 extra_data,
                                                 extra_data_size);
202 203 204 205 206 207 208
            if(track_id < 0){
                WarnL << "添加H265 Track失败:" << track_id;
                return;
            }
            track_info info;
            info.track_id = track_id;
            _codec_to_trackid[track->getCodecId()] = info;
xiongziliang committed
209 210 211 212 213 214 215 216 217 218
        }
            break;
        default:
            WarnL << "MP4录制不支持该编码格式:" << track->getCodecId();
            break;
    }
}

MP4MuxerFile::MP4MuxerFile(const char *file) {
    //创建文件
219
    auto fp = File::createfile_file(file,"wb+");
xiongziliang committed
220 221 222 223
    if(!fp){
        throw std::runtime_error(string("打开文件失败:") + file);
    }

224 225
    GET_CONFIG(uint32_t,mp4BufSize,Record::kFileBufSize);

xiongziliang committed
226
    //新建文件io缓存
227
    std::shared_ptr<char> file_buf(new char[mp4BufSize],[](char *ptr){
xiongziliang committed
228 229 230 231 232 233 234
        if(ptr){
            delete [] ptr;
        }
    });

    if(file_buf){
        //设置文件io缓存
235
        setvbuf(fp, file_buf.get(), _IOFBF, mp4BufSize);
xiongziliang committed
236 237 238 239 240 241
    }

    //创建智能指针
    _file.reset(fp,[file_buf](FILE *fp) {
        fclose(fp);
    });
xiongziliang committed
242 243

    init(MOV_FLAG_FASTSTART);
xiongziliang committed
244 245
}

xiongziliang committed
246 247 248
MP4MuxerFile::~MP4MuxerFile() {
    _mov_writter = nullptr;
}
xiongziliang committed
249 250

int MP4MuxerFile::onRead(void *data, uint64_t bytes) {
xiongziliang committed
251 252 253 254
    if (bytes == fread(data, 1, bytes, _file.get())){
        return 0;
    }
    return 0 != ferror(_file.get()) ? ferror(_file.get()) : -1 /*EOF*/;
xiongziliang committed
255 256 257
}

int MP4MuxerFile::onWrite(const void *data, uint64_t bytes) {
xiongziliang committed
258
    return bytes == fwrite(data, 1, bytes, _file.get()) ? 0 : ferror(_file.get());
xiongziliang committed
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
}


#if defined(_WIN32) || defined(_WIN64)
    #define fseek64 _fseeki64
    #define ftell64 _ftelli64
#else
    #define fseek64 fseek
    #define ftell64 ftell
#endif

int MP4MuxerFile::onSeek(uint64_t offset) {
    return fseek64(_file.get(), offset, SEEK_SET);
}

uint64_t MP4MuxerFile::onTell() {
    return ftell64(_file.get());
}

}//namespace mediakit

#endif//#ifdef ENABLE_MP4RECORD