MediaReader.h 4.92 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
 */

27 28
#ifndef SRC_MEDIAFILE_MEDIAREADER_H_
#define SRC_MEDIAFILE_MEDIAREADER_H_
xzl committed
29

xiongziliang committed
30 31
#include "Common/MultiMediaSourceMuxer.h"
#include "Extension/AAC.h"
xzl committed
32

33
#ifdef ENABLE_MP4V2
xzl committed
34
#include <mp4v2/mp4v2.h>
35
#endif //ENABLE_MP4V2
xiongziliang committed
36
using namespace toolkit;
xzl committed
37

xiongziliang committed
38
namespace mediakit {
xzl committed
39

40
class MediaReader : public std::enable_shared_from_this<MediaReader> ,public MediaSourceEvent{
xzl committed
41 42 43
public:
	typedef std::shared_ptr<MediaReader> Ptr;
	virtual ~MediaReader();
xiongziliang committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

	/**
	 * 流化一个mp4文件,使之转换成RtspMediaSource和RtmpMediaSource
	 * @param strVhost 虚拟主机
	 * @param strApp 应用名
	 * @param strId 流id
	 * @param filePath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
	 */
	MediaReader(const string &strVhost,const string &strApp, const string &strId,const string &filePath = "");
	/**
	 * 开始流化MP4文件,需要指出的是,MediaReader对象一经过调用startReadMP4方法,它的强引用会自持有,
	 * 意思是在文件流化结束之前或中断之前,MediaReader对象是不会被销毁的(不管有没有被外部对象持有)
	 */
	void startReadMP4();

	/**
	 * 设置时移偏移量
	 * @param ui32Stamp 偏移量,单位毫秒
	 * @return
	 */
xiongziliang committed
64
	bool seekTo(MediaSource &sender,uint32_t ui32Stamp) override;
xzl committed
65

xiongziliang committed
66 67 68 69
	/**
	 * 关闭MediaReader的流化进程,会触发该对象放弃自持有
	 * @return
	 */
xiongziliang committed
70
	bool close(MediaSource &sender,bool force) override;
xiongziliang committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

	/**
	 * 自动生成MediaReader对象然后查找相关的MediaSource对象
	 * @param strSchema 协议名
 	 * @param strVhost 虚拟主机
	 * @param strApp 应用名
	 * @param strId 流id
	 * @param filePath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
	 * @param checkApp 是否检查app,防止服务器上文件被乱访问
	 * @return MediaSource
	 */
	static MediaSource::Ptr onMakeMediaSource(const string &strSchema,
											  const string &strVhost,
											  const string &strApp,
											  const string &strId,
											  const string &filePath = "",
											  bool checkApp = true);
88

89
private:
90 91 92
    void onNoneReader(MediaSource &sender) override;
#ifdef ENABLE_MP4V2
    void seek(uint32_t iSeekTime,bool bReStart = true);
93 94 95 96
	inline void setSeekTime(uint32_t iSeekTime);
	inline uint32_t getVideoCurrentTime();
	inline MP4SampleId getVideoSampleId(int iTimeInc = 0);
	inline MP4SampleId getAudioSampleId(int iTimeInc = 0);
97 98 99
	bool readSample(int iTimeInc, bool justSeekSyncFrame);
	inline bool readVideoSample(int iTimeInc,bool justSeekSyncFrame);
	inline bool readAudioSample(int iTimeInc,bool justSeekSyncFrame);
xiongziliang committed
100
	inline void writeH264(uint8_t *pucData,int iLen,uint32_t dts,uint32_t pts);
101 102
	inline void writeAAC(uint8_t *pucData,int iLen,uint32_t uiStamp);
private:
103 104 105 106 107 108 109 110 111 112 113
	MP4FileHandle _hMP4File = MP4_INVALID_FILE_HANDLE;
	MP4TrackId _video_trId = MP4_INVALID_TRACK_ID;
	uint32_t _video_ms = 0;
	uint32_t _video_num_samples = 0;
	uint32_t _video_sample_max_size = 0;
	uint32_t _video_width = 0;
	uint32_t _video_height = 0;
	uint32_t _video_framerate = 0;
	string _strPps;
	string _strSps;
	bool _bSyncSample  = false;
xzl committed
114

115 116 117 118 119 120 121 122
	MP4TrackId _audio_trId = MP4_INVALID_TRACK_ID;
	uint32_t _audio_ms = 0;
	uint32_t _audio_num_samples = 0;
	uint32_t _audio_sample_max_size = 0;
	uint32_t _audio_sample_rate = 0;
	uint32_t _audio_num_channels = 0;
	string _strAacCfg;
	AACFrame _adts;
xzl committed
123

124
	int _iDuration = 0;
125
	MultiMediaSourceMuxer::Ptr _mediaMuxer;
126 127 128
	MP4SampleId _video_current = 0;
	MP4SampleId _audio_current = 0;
	std::shared_ptr<uint8_t> _pcVideoSample;
xzl committed
129

130 131 132 133
	int _iSeekTime = 0 ;
	Ticker _ticker;
	Ticker _alive;
	recursive_mutex _mtx;
134
	Timer::Ptr _timer;
135
	EventPoller::Ptr _poller;
136
#endif //ENABLE_MP4V2
xzl committed
137 138
};

xiongziliang committed
139
} /* namespace mediakit */
xzl committed
140

141
#endif /* SRC_MEDIAFILE_MEDIAREADER_H_ */