MP4Demuxer.cpp 9.37 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
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 11 12 13 14 15 16
 */

#ifdef ENABLE_MP4
#include "MP4Demuxer.h"
#include "Util/logger.h"
#include "Extension/H265.h"
#include "Extension/H264.h"
#include "Extension/AAC.h"
17
#include "Extension/G711.h"
18
#include "Extension/Opus.h"
xiongziliang committed
19
using namespace toolkit;
夏楚 committed
20 21
using namespace std;

xiongziliang committed
22 23
namespace mediakit {

24
MP4Demuxer::MP4Demuxer() {}
xiongziliang committed
25 26

MP4Demuxer::~MP4Demuxer() {
27
    closeMP4();
xiongziliang committed
28 29
}

30 31 32 33 34 35
void MP4Demuxer::openMP4(const string &file) {
    closeMP4();

    _mp4_file = std::make_shared<MP4FileDisk>();
    _mp4_file->openFile(file.data(), "rb+");
    _mov_reader = _mp4_file->createReader();
36 37 38 39
    getAllTracks();
    _duration_ms = mov_reader_getduration(_mov_reader.get());
}

40 41 42 43 44
void MP4Demuxer::closeMP4() {
    _mov_reader.reset();
    _mp4_file.reset();
}

xiongziliang committed
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
int MP4Demuxer::getAllTracks() {
    static mov_reader_trackinfo_t s_on_track = {
            [](void *param, uint32_t track, uint8_t object, int width, int height, const void *extra, size_t bytes) {
                //onvideo
                MP4Demuxer *thiz = (MP4Demuxer *)param;
                thiz->onVideoTrack(track,object,width,height,extra,bytes);
            },
            [](void *param, uint32_t track, uint8_t object, int channel_count, int bit_per_sample, int sample_rate, const void *extra, size_t bytes) {
                //onaudio
                MP4Demuxer *thiz = (MP4Demuxer *)param;
                thiz->onAudioTrack(track,object,channel_count,bit_per_sample,sample_rate,extra,bytes);
            },
            [](void *param, uint32_t track, uint8_t object, const void *extra, size_t bytes) {
                //onsubtitle, do nothing
            }
    };
    return mov_reader_getinfo(_mov_reader.get(),&s_on_track,this);
}

#define SWITCH_CASE(obj_id) case obj_id : return #obj_id
static const char *getObjectName(int obj_id) {
    switch (obj_id) {
        SWITCH_CASE(MOV_OBJECT_TEXT);
        SWITCH_CASE(MOV_OBJECT_MP4V);
        SWITCH_CASE(MOV_OBJECT_H264);
        SWITCH_CASE(MOV_OBJECT_HEVC);
        SWITCH_CASE(MOV_OBJECT_AAC);
        SWITCH_CASE(MOV_OBJECT_MP2V);
        SWITCH_CASE(MOV_OBJECT_AAC_MAIN);
        SWITCH_CASE(MOV_OBJECT_AAC_LOW);
        SWITCH_CASE(MOV_OBJECT_AAC_SSR);
        SWITCH_CASE(MOV_OBJECT_MP3);
        SWITCH_CASE(MOV_OBJECT_MP1V);
        SWITCH_CASE(MOV_OBJECT_MP1A);
        SWITCH_CASE(MOV_OBJECT_JPEG);
        SWITCH_CASE(MOV_OBJECT_PNG);
        SWITCH_CASE(MOV_OBJECT_JPEG2000);
        SWITCH_CASE(MOV_OBJECT_G719);
        SWITCH_CASE(MOV_OBJECT_OPUS);
        SWITCH_CASE(MOV_OBJECT_G711a);
        SWITCH_CASE(MOV_OBJECT_G711u);
        SWITCH_CASE(MOV_OBJECT_AV1);
        default:
            return "unknown mp4 object";
    }
}


void MP4Demuxer::onVideoTrack(uint32_t track, uint8_t object, int width, int height, const void *extra, size_t bytes) {
    switch (object) {
        case MOV_OBJECT_H264: {
            auto video = std::make_shared<H264Track>();
            _track_to_codec.emplace(track,video);

99 100
            struct mpeg4_avc_t avc;
            memset(&avc, 0, sizeof(avc));
xiongziliang committed
101
            if (mpeg4_avc_decoder_configuration_record_load((uint8_t *) extra, bytes, &avc) > 0) {
102
                uint8_t config[1024 * 10] = {0};
xiongziliang committed
103 104
                int size = mpeg4_avc_to_nalu(&avc, config, sizeof(config));
                if (size > 0) {
xiongziliang committed
105
                    video->inputFrame(std::make_shared<H264FrameNoCacheAble>((char *)config, size, 0, 4));
xiongziliang committed
106 107 108 109 110 111 112 113
                }
            }
        }
            break;
        case MOV_OBJECT_HEVC: {
            auto video = std::make_shared<H265Track>();
            _track_to_codec.emplace(track,video);

114 115
            struct mpeg4_hevc_t hevc;
            memset(&hevc, 0, sizeof(hevc));
xiongziliang committed
116
            if (mpeg4_hevc_decoder_configuration_record_load((uint8_t *) extra, bytes, &hevc) > 0) {
117
                uint8_t config[1024 * 10] = {0};
xiongziliang committed
118 119
                int size = mpeg4_hevc_to_nalu(&hevc, config, sizeof(config));
                if (size > 0) {
xiongziliang committed
120
                    video->inputFrame(std::make_shared<H265FrameNoCacheAble>((char *) config, size, 0, 4));
xiongziliang committed
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
                }
            }
        }
            break;
        default:
            WarnL << "不支持该编码类型的MP4,已忽略:" << getObjectName(object);
            break;
    }
}

void MP4Demuxer::onAudioTrack(uint32_t track_id, uint8_t object, int channel_count, int bit_per_sample, int sample_rate, const void *extra, size_t bytes) {
    switch(object){
        case MOV_OBJECT_AAC:{
            auto audio = std::make_shared<AACTrack>(bytes > 0 ? string((char *)extra,bytes) : "");
            _track_to_codec.emplace(track_id, audio);
            break;
137 138
        }

139 140 141 142
        case MOV_OBJECT_G711a:
        case MOV_OBJECT_G711u:{
            auto audio = std::make_shared<G711Track>(object == MOV_OBJECT_G711a ? CodecG711A : CodecG711U, sample_rate, channel_count, bit_per_sample / channel_count );
            _track_to_codec.emplace(track_id, audio);
143
            break;
144
        }
145 146 147 148

        case MOV_OBJECT_OPUS: {
            auto audio = std::make_shared<OpusTrack>();
            _track_to_codec.emplace(track_id, audio);
149
            break;
150 151
        }

xiongziliang committed
152 153 154 155 156 157 158 159 160 161 162 163 164
        default:
            WarnL << "不支持该编码类型的MP4,已忽略:" << getObjectName(object);
            break;
    }
}

int64_t MP4Demuxer::seekTo(int64_t stamp_ms) {
    if(0 != mov_reader_seek(_mov_reader.get(),&stamp_ms)){
        return -1;
    }
    return stamp_ms;
}

165 166
struct Context {
    Context(MP4Demuxer *ptr) : thiz(ptr) {}
xiongziliang committed
167
    MP4Demuxer *thiz;
168 169 170 171
    int flags = 0;
    int64_t pts = 0;
    int64_t dts = 0;
    uint32_t track_id = 0;
xiongziliang committed
172 173 174
    BufferRaw::Ptr buffer;
};

175 176
#define DATA_OFFSET ADTS_HEADER_LEN

177 178 179
Frame::Ptr MP4Demuxer::readFrame(bool &keyFrame, bool &eof) {
    keyFrame = false;
    eof = false;
180 181

    static mov_reader_onread2 mov_onalloc = [](void *param, uint32_t track_id, size_t bytes, int64_t pts, int64_t dts, int flags) -> void * {
xiongziliang committed
182 183 184 185 186 187
        Context *ctx = (Context *) param;
        ctx->pts = pts;
        ctx->dts = dts;
        ctx->flags = flags;
        ctx->track_id = track_id;

ziyue committed
188
        ctx->buffer = ctx->thiz->_buffer_pool.obtain2();
189 190 191
        ctx->buffer->setCapacity(bytes + DATA_OFFSET + 1);
        ctx->buffer->setSize(bytes + DATA_OFFSET);
        return ctx->buffer->data() + DATA_OFFSET;
xiongziliang committed
192 193
    };

194
    Context ctx(this);
195
    auto ret = mov_reader_read2(_mov_reader.get(), mov_onalloc, &ctx);
xiongziliang committed
196
    switch (ret) {
197 198
        case 0 : {
            eof = true;
xiongziliang committed
199
            return nullptr;
200
        }
xiongziliang committed
201 202

        case 1 : {
203
            keyFrame = ctx.flags & MOV_AV_FLAG_KEYFREAME;
xiongziliang committed
204
            return makeFrame(ctx.track_id, ctx.buffer, ctx.pts, ctx.dts);
xiongziliang committed
205 206
        }

207 208
        default : {
            eof = true;
xiongziliang committed
209
            WarnL << "读取mp4文件数据失败:" << ret;
xiongziliang committed
210
            return nullptr;
211
        }
xiongziliang committed
212 213 214 215 216 217 218 219
    }
}

Frame::Ptr MP4Demuxer::makeFrame(uint32_t track_id, const Buffer::Ptr &buf, int64_t pts, int64_t dts) {
    auto it = _track_to_codec.find(track_id);
    if (it == _track_to_codec.end()) {
        return nullptr;
    }
220 221
    auto bytes = buf->size() - DATA_OFFSET;
    auto data = buf->data() + DATA_OFFSET;
xiongziliang committed
222
    auto codec = it->second->getCodecId();
223
    Frame::Ptr ret;
xiongziliang committed
224 225 226
    switch (codec) {
        case CodecH264 :
        case CodecH265 : {
227 228 229 230 231 232
            uint32_t offset = 0;
            while (offset < bytes) {
                uint32_t frame_len;
                memcpy(&frame_len, data + offset, 4);
                frame_len = ntohl(frame_len);
                if (frame_len + offset + 4 > bytes) {
xiongziliang committed
233 234
                    return nullptr;
                }
235
                memcpy(data + offset, "\x00\x00\x00\x01", 4);
236
                offset += (frame_len + 4);
xiongziliang committed
237 238
            }
            if (codec == CodecH264) {
ziyue committed
239
                ret = std::make_shared<FrameWrapper<H264FrameNoCacheAble> >(buf, (uint64_t)dts, (uint64_t)pts, 4, DATA_OFFSET);
240
                break;
xiongziliang committed
241
            }
ziyue committed
242
            ret = std::make_shared<FrameWrapper<H265FrameNoCacheAble> >(buf, (uint64_t)dts, (uint64_t)pts, 4, DATA_OFFSET);
243
            break;
244 245 246 247 248 249 250
        }

        case CodecAAC: {
            AACTrack::Ptr track = dynamic_pointer_cast<AACTrack>(it->second);
            assert(track);
            //加上adts头
            dumpAacConfig(track->getAacCfg(), buf->size() - DATA_OFFSET, (uint8_t *) buf->data() + (DATA_OFFSET - ADTS_HEADER_LEN), ADTS_HEADER_LEN);
ziyue committed
251
            ret = std::make_shared<FrameWrapper<FrameFromPtr> >(buf, (uint64_t)dts, (uint64_t)pts, ADTS_HEADER_LEN, DATA_OFFSET - ADTS_HEADER_LEN, codec);
252
            break;
xiongziliang committed
253
        }
254

255
        case CodecOpus:
256 257
        case CodecG711A:
        case CodecG711U: {
ziyue committed
258
            ret = std::make_shared<FrameWrapper<FrameFromPtr> >(buf, (uint64_t)dts, (uint64_t)pts, 0, DATA_OFFSET, codec);
259
            break;
260
        }
261 262

        default: return nullptr;
xiongziliang committed
263
    }
264 265 266 267
    if (ret) {
        it->second->inputFrame(ret);
    }
    return ret;
xiongziliang committed
268 269 270 271 272 273 274 275 276 277
}

vector<Track::Ptr> MP4Demuxer::getTracks(bool trackReady) const {
    vector<Track::Ptr> ret;
    for (auto &pr : _track_to_codec) {
        if(trackReady && !pr.second->ready()){
            continue;
        }
        ret.push_back(pr.second);
    }
278
    return ret;
xiongziliang committed
279 280 281 282 283 284 285 286
}

uint64_t MP4Demuxer::getDurationMS() const {
    return _duration_ms;
}

}//namespace mediakit
#endif// ENABLE_MP4