MP4Reader.cpp 4.63 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.
xzl committed
9 10
 */

xiongziliang committed
11
#ifdef ENABLE_MP4
xiongziliang committed
12
#include "MP4Reader.h"
xiongziliang committed
13
#include "Common/config.h"
14
#include "Thread/WorkThreadPool.h"
xiongziliang committed
15 16
using namespace toolkit;
namespace mediakit {
xzl committed
17

xiongziliang committed
18
MP4Reader::MP4Reader(const string &strVhost,const string &strApp, const string &strId,const string &filePath ) {
19
    _poller = WorkThreadPool::Instance().getPoller();
xiongziliang committed
20 21
    auto strFileName = filePath;
    if(strFileName.empty()){
22
        GET_CONFIG(string,recordPath,Record::kFilePath);
23 24
        GET_CONFIG(bool,enableVhost,General::kEnableVhost);
        if(enableVhost){
25
            strFileName = strVhost + "/" + strApp + "/" + strId;
26
        }else{
27
            strFileName = strApp + "/" + strId;
28
        }
29 30 31
        strFileName = File::absolutePath(strFileName,recordPath);
    }

xiongziliang committed
32 33
    _demuxer = std::make_shared<MP4Demuxer>(strFileName.data());
    _mediaMuxer.reset(new MultiMediaSourceMuxer(strVhost, strApp, strId, _demuxer->getDurationMS() / 1000.0, true, true, false, false));
34 35 36 37 38
    auto tracks = _demuxer->getTracks(false);
    if(tracks.empty()){
        throw std::runtime_error(StrPrinter << "该mp4文件没有有效的track:" << strFileName);
    }
    for(auto &track : tracks){
xiongziliang committed
39 40 41
        _mediaMuxer->addTrack(track);
        if(track->getTrackType() == TrackVideo){
            _have_video = true;
42
        }
xiongziliang committed
43
    }
xiongziliang committed
44 45 46
    //添加完毕所有track,防止单track情况下最大等待3秒
    _mediaMuxer->addTrackCompleted();
}
xzl committed
47

xiongziliang committed
48
bool MP4Reader::readSample() {
49
    bool keyFrame = false;
xiongziliang committed
50
    bool eof = false;
51 52
    while (!eof) {
        auto frame = _demuxer->readFrame(keyFrame, eof);
xiongziliang committed
53
        if (!frame) {
54
            continue;
xiongziliang committed
55 56
        }
        _mediaMuxer->inputFrame(frame);
xiongziliang committed
57
        if (frame->dts() > getCurrentStamp()) {
xiongziliang committed
58
            break;
59 60 61
        }
    }

xiongziliang committed
62 63 64
    GET_CONFIG(bool, fileRepeat, Record::kFileRepeat);
    if (eof && fileRepeat) {
        //需要从头开始看
xiongziliang committed
65
        seekTo(0);
66
        return true;
67
    }
xiongziliang committed
68 69

    return !eof;
xzl committed
70 71
}

xiongziliang committed
72
void MP4Reader::startReadMP4() {
xiongziliang committed
73
    GET_CONFIG(uint32_t, sampleMS, Record::kSampleMS);
74
    auto strongSelf = shared_from_this();
75
    _mediaMuxer->setMediaListener(strongSelf);
76

xiongziliang committed
77 78 79
    //先获取关键帧
    seekTo(0);
    //读sampleMS毫秒的数据用于产生MediaSource
xiongziliang committed
80
    setCurrentStamp(getCurrentStamp() + sampleMS);
xiongziliang committed
81 82 83 84 85 86
    readSample();

    //启动定时器
    _timer = std::make_shared<Timer>(sampleMS / 1000.0f, [strongSelf]() {
        lock_guard<recursive_mutex> lck(strongSelf->_mtx);
        return strongSelf->readSample();
87
    }, _poller);
88
}
xiongziliang committed
89

xiongziliang committed
90
uint32_t MP4Reader::getCurrentStamp() {
xiongziliang committed
91
    return _seek_to + _seek_ticker.elapsedTime();
92
}
xiongziliang committed
93

xiongziliang committed
94
void MP4Reader::setCurrentStamp(uint32_t ui32Stamp){
xiongziliang committed
95 96
    _seek_to = ui32Stamp;
    _seek_ticker.resetTime();
xiongziliang committed
97
    _mediaMuxer->setTimeStamp(ui32Stamp);
98
}
xzl committed
99

xiongziliang committed
100 101
bool MP4Reader::seekTo(MediaSource &sender,uint32_t ui32Stamp){
    return seekTo(ui32Stamp);
102 103
}

xiongziliang committed
104
bool MP4Reader::seekTo(uint32_t ui32Stamp){
105
    lock_guard<recursive_mutex> lck(_mtx);
xiongziliang committed
106 107 108
    if (ui32Stamp > _demuxer->getDurationMS()) {
        //超过文件长度
        return false;
109
    }
xiongziliang committed
110 111 112 113
    auto stamp = _demuxer->seekTo(ui32Stamp);
    if(stamp == -1){
        //seek失败
        return false;
114
    }
xzl committed
115

xiongziliang committed
116 117
    if(!_have_video){
        //没有视频,不需要搜索关键帧
xiongziliang committed
118 119
        //设置当前时间戳
        setCurrentStamp(stamp);
xiongziliang committed
120 121 122
        return true;
    }
    //搜索到下一帧关键帧
123
    bool keyFrame = false;
124 125 126
    bool eof = false;
    while (!eof) {
        auto frame = _demuxer->readFrame(keyFrame, eof);
xiongziliang committed
127
        if(!frame){
xiongziliang committed
128
            //文件读完了都未找到下一帧关键帧
129
            continue;
xiongziliang committed
130
        }
131
        if(keyFrame || frame->keyFrame() || frame->configFrame()){
xiongziliang committed
132 133
            //定位到key帧
            _mediaMuxer->inputFrame(frame);
xiongziliang committed
134 135
            //设置当前时间戳
            setCurrentStamp(frame->dts());
xiongziliang committed
136
            return true;
137 138
        }
    }
139
    return false;
xzl committed
140 141
}

xiongziliang committed
142 143 144
bool MP4Reader::close(MediaSource &sender,bool force){
    if(!_mediaMuxer || (!force && _mediaMuxer->totalReaderCount())){
        return false;
145
    }
xiongziliang committed
146 147 148
    _timer.reset();
    WarnL << sender.getSchema() << "/" << sender.getVhost() << "/" << sender.getApp() << "/" << sender.getId() << " " << force;
    return true;
xzl committed
149 150
}

xiongziliang committed
151 152
int MP4Reader::totalReaderCount(MediaSource &sender) {
    return _mediaMuxer ? _mediaMuxer->totalReaderCount() : sender.readerCount();
xzl committed
153 154
}

xiongziliang committed
155
} /* namespace mediakit */
156
#endif //ENABLE_MP4