MP4Reader.cpp 12.4 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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.
xzl committed
25 26
 */

xiongziliang committed
27
#include "MP4Reader.h"
xiongziliang committed
28
#include "Common/config.h"
xiongzilaing committed
29
#include "Util/mini.h"
xiongziliang committed
30
#include "Util/File.h"
xzl committed
31
#include "Http/HttpSession.h"
xiongziliang committed
32 33
#include "Extension/AAC.h"
#include "Extension/H264.h"
34
#include "Thread/WorkThreadPool.h"
xiongziliang committed
35

xiongziliang committed
36
using namespace toolkit;
xzl committed
37

xiongziliang committed
38
namespace mediakit {
xzl committed
39

40
#ifdef ENABLE_MP4V2
xiongziliang committed
41
MP4Reader::MP4Reader(const string &strVhost,const string &strApp, const string &strId,const string &filePath ) {
42
	_poller = WorkThreadPool::Instance().getPoller();
xiongziliang committed
43 44
    auto strFileName = filePath;
    if(strFileName.empty()){
45 46 47
		GET_CONFIG(string,recordPath,Record::kFilePath);
        GET_CONFIG(bool,enableVhost,General::kEnableVhost);
        if(enableVhost){
48
            strFileName = strVhost + "/" + strApp + "/" + strId;
49
        }else{
50
            strFileName = strApp + "/" + strId;
51
        }
xiongziliang committed
52
		strFileName = File::absolutePath(strFileName,recordPath);
xiongziliang committed
53
    }
xzl committed
54

55 56
	_hMP4File = MP4Read(strFileName.data());
	if(_hMP4File == MP4_INVALID_FILE_HANDLE){
57
		throw runtime_error(StrPrinter << "打开MP4文件失败:" << strFileName << endl);
xzl committed
58
	}
59 60 61 62 63 64 65 66 67 68 69
	_video_trId = MP4FindTrackId(_hMP4File, 0, MP4_VIDEO_TRACK_TYPE, 0);
	if(_video_trId != MP4_INVALID_TRACK_ID){
		 if(strcmp(MP4GetTrackMediaDataName(_hMP4File, _video_trId),"avc1") ==0){
			auto _video_timescale 		= MP4GetTrackTimeScale(_hMP4File, _video_trId);
			auto _video_duration 		= MP4GetTrackDuration(_hMP4File, _video_trId);
			_video_num_samples     = MP4GetTrackNumberOfSamples(_hMP4File, _video_trId);
			_video_sample_max_size = MP4GetTrackMaxSampleSize(_hMP4File, _video_trId);
			_video_width 			= MP4GetTrackVideoWidth(_hMP4File, _video_trId);
			_video_height 			= MP4GetTrackVideoHeight(_hMP4File, _video_trId);
			_video_framerate       = MP4GetTrackVideoFrameRate(_hMP4File, _video_trId);
			_pcVideoSample = std::shared_ptr<uint8_t> (new uint8_t[_video_sample_max_size],[](uint8_t *ptr){
xzl committed
70 71 72 73 74 75 76
				delete [] ptr;
			});
			uint8_t **seqheader;
			uint8_t **pictheader;
			uint32_t *pictheadersize;
			uint32_t *seqheadersize;
			uint32_t ix;
77
			if(MP4GetTrackH264SeqPictHeaders(_hMP4File, _video_trId, &seqheader, &seqheadersize, &pictheader, &pictheadersize)){
xzl committed
78
				for (ix = 0; seqheadersize[ix] != 0; ix++) {
79
					_strSps.assign((char *)(seqheader[ix]), seqheadersize[ix]);
xzl committed
80
					float framerate;
81 82 83
					getAVCInfo(_strSps, (int &)_video_width, (int &)_video_height, framerate);
					_video_framerate = framerate;
					_strSps = string("\x0\x0\x0\x1",4) + _strSps;
84
					MP4Free(seqheader[ix]);
xzl committed
85
				}
86 87
				MP4Free(seqheader);
				MP4Free(seqheadersize);
xzl committed
88
				for (ix = 0; pictheadersize[ix] != 0; ix++) {
89 90
					_strPps.assign("\x0\x0\x0\x1",4);
					_strPps.append((char *)(pictheader[ix]), pictheadersize[ix]);
91
					MP4Free(pictheader[ix]);
xzl committed
92
				}
93 94
				MP4Free(pictheader);
				MP4Free(pictheadersize);
xzl committed
95
			}
96
			_video_ms = 1000.0 * _video_duration / _video_timescale;
xzl committed
97
			/*InfoL 	<< "\r\n"
98 99 100 101 102
					<< _video_ms << "\r\n"
					<< _video_num_samples << "\r\n"
					<< _video_framerate << "\r\n"
					<< _video_width << "\r\n"
					<< _video_height << "\r\n";*/
xzl committed
103 104
		} else {
			//如果不是h264,则忽略
105
			_video_trId = MP4_INVALID_TRACK_ID;
xzl committed
106 107 108 109
		}
	}


110 111 112 113 114 115 116 117
	_audio_trId = MP4FindTrackId(_hMP4File, 0, MP4_AUDIO_TRACK_TYPE, 0);
	if (_audio_trId != MP4_INVALID_TRACK_ID) {
		if (strcmp(MP4GetTrackMediaDataName(_hMP4File, _audio_trId), "mp4a") == 0) {
			_audio_sample_rate = MP4GetTrackTimeScale(_hMP4File, _audio_trId);
			auto _audio_duration = MP4GetTrackDuration(_hMP4File, _audio_trId);
			_audio_num_samples = MP4GetTrackNumberOfSamples(_hMP4File,_audio_trId);
			_audio_num_channels = MP4GetTrackAudioChannels(_hMP4File, _audio_trId);
			_audio_sample_max_size = MP4GetTrackMaxSampleSize(_hMP4File,_audio_trId);
xzl committed
118 119
			uint8_t *ppConfig;
			uint32_t pConfigSize;
120 121 122 123 124
			if(MP4GetTrackESConfiguration(_hMP4File,_audio_trId,&ppConfig,&pConfigSize)){
				_strAacCfg.assign((char *)ppConfig, pConfigSize);
				makeAdtsHeader(_strAacCfg, _adts);
				writeAdtsHeader(_adts,_adts.buffer);
				getAACInfo(_adts, (int &)_audio_sample_rate, (int &)_audio_num_channels);
125
				MP4Free(ppConfig);
xzl committed
126
			}
127
			_audio_ms = 1000.0 * _audio_duration / _audio_sample_rate;
xzl committed
128
			/*InfoL 	<< "\r\n"
129 130 131 132
					<< _audio_ms << "\r\n"
					<< _audio_num_samples << "\r\n"
					<< _audio_num_channels << "\r\n"
					<< _audio_sample_rate << "\r\n";*/
xzl committed
133
		}else{
134
			_audio_trId = MP4_INVALID_TRACK_ID;
xzl committed
135 136
		}
	}
137 138 139
	if(_audio_trId == MP4_INVALID_TRACK_ID && _video_trId == MP4_INVALID_TRACK_ID){
		MP4Close(_hMP4File);
		_hMP4File = MP4_INVALID_FILE_HANDLE;
140
		throw runtime_error(StrPrinter << "该MP4文件音视频格式不支持:" << strFileName << endl);
xzl committed
141 142
	}

143
	_iDuration	= MAX(_video_ms,_audio_ms);
144
	_mediaMuxer.reset(new MultiMediaSourceMuxer(strVhost, strApp, strId, _iDuration / 1000.0, true, true, false, false));
145
	if (_audio_trId != MP4_INVALID_TRACK_ID) {
146
		AACTrack::Ptr track = std::make_shared<AACTrack>(_strAacCfg);
147
		_mediaMuxer->addTrack(track);
xzl committed
148 149
	}

150
	if (_video_trId != MP4_INVALID_TRACK_ID) {
151
		H264Track::Ptr track = std::make_shared<H264Track>(_strSps,_strPps);
152
		_mediaMuxer->addTrack(track);
xzl committed
153 154 155 156
	}
}


xiongziliang committed
157
MP4Reader::~MP4Reader() {
158 159 160
	if (_hMP4File != MP4_INVALID_FILE_HANDLE) {
		MP4Close(_hMP4File);
		_hMP4File = MP4_INVALID_FILE_HANDLE;
xzl committed
161 162 163 164
	}
}


xiongziliang committed
165
void MP4Reader::startReadMP4() {
xzl committed
166
	auto strongSelf = shared_from_this();
167
    GET_CONFIG(uint32_t,sampleMS,Record::kSampleMS);
168

169
	_timer = std::make_shared<Timer>(sampleMS / 1000.0f,[strongSelf](){
170
		return strongSelf->readSample(0,false);
171
	}, _poller);
172

173 174
    //先读sampleMS毫秒的数据用于产生MediaSouce
	readSample(sampleMS, false);
175
	_mediaMuxer->setListener(strongSelf);
176
}
xiongziliang committed
177
 bool MP4Reader::seekTo(MediaSource &sender,uint32_t ui32Stamp){
178 179 180
	 seek(ui32Stamp);
	 return true;
}
xiongziliang committed
181
bool MP4Reader::close(MediaSource &sender,bool force){
182
    if(!_mediaMuxer || (!force && _mediaMuxer->readerCount() != 0)){
183 184
        return false;
    }
185
	_timer.reset();
xiongziliang committed
186
    WarnL << sender.getSchema() << "/" << sender.getVhost() << "/" << sender.getApp() << "/" << sender.getId() << " " << force;
187 188
    return true;
}
xzl committed
189

xiongziliang committed
190
void MP4Reader::onNoneReader(MediaSource &sender) {
191
    if(!_mediaMuxer || _mediaMuxer->readerCount() != 0){
192 193 194 195 196
        return;
    }
    MediaSourceEvent::onNoneReader(sender);
}

xiongziliang committed
197
bool MP4Reader::readSample(int iTimeInc,bool justSeekSyncFrame) {
xzl committed
198
	TimeTicker();
199
	lock_guard<recursive_mutex> lck(_mtx);
200 201
	auto bFlag0 = readVideoSample(iTimeInc,justSeekSyncFrame);//数据没读完
	auto bFlag1 = readAudioSample(iTimeInc,justSeekSyncFrame);//数据没读完
202
	auto bFlag2 = _mediaMuxer->readerCount() > 0;//读取者大于0
xzl committed
203
	if((bFlag0 || bFlag1) && bFlag2){
204
		_alive.resetTime();
xzl committed
205
	}
Weiwei.Zhou committed
206 207 208 209 210
	//重头开始循环读取
	GET_CONFIG(bool,fileRepeat,Record::kFileRepeat);
	if (fileRepeat && !bFlag0 && !bFlag1) {
		seek(0);
	}
xzl committed
211 212
	//DebugL << "alive ...";
	//3秒延时关闭
213
	return  _alive.elapsedTime() <  3 * 1000;
xzl committed
214
}
xiongziliang committed
215
inline bool MP4Reader::readVideoSample(int iTimeInc,bool justSeekSyncFrame) {
216
	if (_video_trId != MP4_INVALID_TRACK_ID) {
xzl committed
217
		auto iNextSample = getVideoSampleId(iTimeInc);
218
		MP4SampleId iIdx = _video_current;
219
		for (; iIdx < iNextSample; iIdx++) {
220 221
			uint8_t *pBytes = _pcVideoSample.get();
			uint32_t numBytes = _video_sample_max_size;
xiongziliang committed
222 223
			MP4Duration pRenderingOffset;
			if(MP4ReadSample(_hMP4File, _video_trId, iIdx + 1, &pBytes, &numBytes,NULL,NULL,&pRenderingOffset,&_bSyncSample)){
224
				if (!justSeekSyncFrame) {
xzl committed
225 226 227 228 229 230 231 232 233
					uint32_t iOffset = 0;
					while (iOffset < numBytes) {
						uint32_t iFrameLen;
						memcpy(&iFrameLen,pBytes + iOffset,4);
						iFrameLen = ntohl(iFrameLen);
                        if(iFrameLen + iOffset + 4> numBytes){
                            break;
                        }
						memcpy(pBytes + iOffset, "\x0\x0\x0\x1", 4);
xiongziliang committed
234 235
						uint32_t dts = (double) _video_ms * iIdx / _video_num_samples;
						writeH264(pBytes + iOffset, iFrameLen + 4, dts, dts + pRenderingOffset / 90);
xzl committed
236 237
						iOffset += (iFrameLen + 4);
					}
238
				}else if(_bSyncSample){
xzl committed
239 240 241
					break;
				}
			}else{
xiongziliang committed
242
				ErrorL << "读取视频失败:" << iIdx + 1;
xzl committed
243 244
			}
		}
245 246
		_video_current = iIdx;
		return _video_current < _video_num_samples;
xzl committed
247 248 249 250
	}
	return false;
}

xiongziliang committed
251
inline bool MP4Reader::readAudioSample(int iTimeInc,bool justSeekSyncFrame) {
252
	if (_audio_trId != MP4_INVALID_TRACK_ID) {
xzl committed
253
		auto iNextSample = getAudioSampleId(iTimeInc);
254 255 256 257
		for (auto i = _audio_current; i < iNextSample; i++) {
			uint32_t numBytes = _audio_sample_max_size;
			uint8_t *pBytes = _adts.buffer + 7;
			if(MP4ReadSample(_hMP4File, _audio_trId, i + 1, &pBytes, &numBytes)){
258
				if (!justSeekSyncFrame) {
259 260 261
					_adts.aac_frame_length = 7 + numBytes;
					writeAdtsHeader(_adts, _adts.buffer);
					writeAAC(_adts.buffer, _adts.aac_frame_length, (double) _audio_ms * i / _audio_num_samples);
xzl committed
262 263
				}
			}else{
xiongziliang committed
264
				ErrorL << "读取音频失败:" << i+ 1;
xzl committed
265 266
			}
		}
267 268
		_audio_current = iNextSample;
		return _audio_current < _audio_num_samples;
xzl committed
269 270 271 272
	}
	return false;
}

xiongziliang committed
273
inline void MP4Reader::writeH264(uint8_t *pucData,int iLen,uint32_t dts,uint32_t pts) {
274
	_mediaMuxer->inputFrame(std::make_shared<H264FrameNoCacheAble>((char*)pucData,iLen,dts,pts));
xzl committed
275 276
}

xiongziliang committed
277
inline void MP4Reader::writeAAC(uint8_t *pucData,int iLen,uint32_t uiStamp) {
278
	_mediaMuxer->inputFrame(std::make_shared<AACFrameNoCacheAble>((char*)pucData,iLen,uiStamp));
xzl committed
279 280
}

xiongziliang committed
281
inline MP4SampleId MP4Reader::getVideoSampleId(int iTimeInc ) {
282 283
	MP4SampleId video_current = (double)_video_num_samples *  (_iSeekTime + _ticker.elapsedTime() + iTimeInc) / _video_ms;
	video_current = MAX(0,MIN(_video_num_samples, video_current));
xzl committed
284 285 286 287
	return video_current;

}

xiongziliang committed
288
inline MP4SampleId MP4Reader::getAudioSampleId(int iTimeInc) {
289 290
	MP4SampleId audio_current = (double)_audio_num_samples * (_iSeekTime + _ticker.elapsedTime() + iTimeInc)  / _audio_ms ;
	audio_current = MAX(0,MIN(_audio_num_samples,audio_current));
xzl committed
291 292
	return audio_current;
}
xiongziliang committed
293
inline void MP4Reader::setSeekTime(uint32_t iSeekTime){
294 295 296 297
	_iSeekTime = MAX(0, MIN(iSeekTime,_iDuration));
	_ticker.resetTime();
	if (_audio_trId != MP4_INVALID_TRACK_ID) {
		_audio_current = getAudioSampleId();
xzl committed
298
	}
299 300
	if (_video_trId != MP4_INVALID_TRACK_ID) {
		_video_current = getVideoSampleId();
xzl committed
301 302 303
	}
}

xiongziliang committed
304
inline uint32_t MP4Reader::getVideoCurrentTime(){
305
	return (double)_video_current * _video_ms /_video_num_samples;
xzl committed
306
}
xiongziliang committed
307
void MP4Reader::seek(uint32_t iSeekTime,bool bReStart){
308 309
	lock_guard<recursive_mutex> lck(_mtx);
	if(iSeekTime == 0 || _video_trId == MP4_INVALID_TRACK_ID){
xzl committed
310 311 312 313
		setSeekTime(iSeekTime);
	}else{
		setSeekTime(iSeekTime - 5000);
		//在之后的10秒查找关键帧
314
		readVideoSample(10000, true);
315
		if (_bSyncSample) {
xzl committed
316
			//找到关键帧
317
			auto iIdr =  _video_current;
xzl committed
318
			setSeekTime(getVideoCurrentTime());
319
			_video_current = iIdr;
xzl committed
320 321 322 323 324
		}else{
			//未找到关键帧
			setSeekTime(iSeekTime);
		}
	}
325
	_mediaMuxer->setTimeStamp(_iSeekTime);
xzl committed
326 327

	if(bReStart){
328
		_timer.reset();
xzl committed
329 330 331 332
		startReadMP4();
	}
}

333
#endif //ENABLE_MP4V2
xzl committed
334 335 336



xiongziliang committed
337
MediaSource::Ptr MP4Reader::onMakeMediaSource(const string &strSchema,
xiongziliang committed
338 339 340 341 342
												const string &strVhost,
												const string &strApp,
												const string &strId,
												const string &filePath,
												bool checkApp ){
343
#ifdef ENABLE_MP4V2
344
    GET_CONFIG(string,appName,Record::kAppName);
xiongziliang committed
345
    if (checkApp && strApp != appName) {
xzl committed
346 347 348
		return nullptr;
	}
	try {
xiongziliang committed
349
		MP4Reader::Ptr pReader(new MP4Reader(strVhost,strApp, strId,filePath));
xzl committed
350
		pReader->startReadMP4();
351
		return MediaSource::find(strSchema,strVhost,strApp, strId, false);
xzl committed
352 353 354 355 356 357
	} catch (std::exception &ex) {
		WarnL << ex.what();
		return nullptr;
	}
#else
	return nullptr;
358
#endif //ENABLE_MP4V2
xzl committed
359 360 361 362
}



xiongziliang committed
363
} /* namespace mediakit */