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

27 28
#ifndef SRC_MEDIAFILE_MEDIAREADER_H_
#define SRC_MEDIAFILE_MEDIAREADER_H_
xzl committed
29

xiongzilaing committed
30
#include "Device/Device.h"
xzl committed
31 32 33
#include "Rtsp/RtspMediaSource.h"
#include "Rtmp/RtmpMediaSource.h"

34
#ifdef ENABLE_MP4V2
xzl committed
35
#include <mp4v2/mp4v2.h>
36
#endif //ENABLE_MP4V2
xzl committed
37 38 39 40 41 42 43 44

using namespace ZL::DEV;
using namespace ZL::Rtsp;
using namespace ZL::Rtmp;

namespace ZL {
namespace MediaFile {

45
class MediaReader : public std::enable_shared_from_this<MediaReader> ,public MediaSourceEvent{
xzl committed
46 47
public:
	typedef std::shared_ptr<MediaReader> Ptr;
48
	MediaReader(const string &strVhost,const string &strApp, const string &strId);
xzl committed
49
	virtual ~MediaReader();
50 51 52 53
	static MediaSource::Ptr onMakeMediaSource(const string &strSchema,const string &strVhost,const string &strApp, const string &strId);
public:
	bool seekTo(uint32_t ui32Stamp) override;
	uint32_t getStamp() override;
54
    bool shutDown() override;
xzl committed
55 56
private:

57
#ifdef ENABLE_MP4V2
xzl committed
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 99 100
	MP4FileHandle m_hMP4File = MP4_INVALID_FILE_HANDLE;
	MP4TrackId m_video_trId = MP4_INVALID_TRACK_ID;
	uint32_t m_video_ms = 0;
	uint32_t m_video_num_samples = 0;
	uint32_t m_video_sample_max_size = 0;
	uint32_t m_video_width = 0;
	uint32_t m_video_height = 0;
	uint32_t m_video_framerate = 0;
	string m_strPps;
	string m_strSps;
	bool m_bSyncSample  = false;

	MP4TrackId m_audio_trId = MP4_INVALID_TRACK_ID;
	uint32_t m_audio_ms = 0;
	uint32_t m_audio_num_samples = 0;
	uint32_t m_audio_sample_max_size = 0;
	uint32_t m_audio_sample_rate = 0;
	uint32_t m_audio_num_channels = 0;
	string m_strAacCfg;
	AdtsFrame m_adts;

	int m_iDuration = 0;
	DevChannel::Ptr m_pChn;
	MP4SampleId m_video_current = 0;
	MP4SampleId m_audio_current = 0;
	std::shared_ptr<uint8_t> m_pcVideoSample;

	int m_iSeekTime = 0 ;
	Ticker m_ticker;
	Ticker m_alive;
	recursive_mutex m_mtx;

	void seek(int iSeekTime,bool bReStart = true);
	inline void setSeekTime(int iSeekTime);
	inline uint32_t getVideoCurrentTime();
	void startReadMP4();
	inline MP4SampleId getVideoSampleId(int iTimeInc = 0);
	inline MP4SampleId getAudioSampleId(int iTimeInc = 0);
	bool readSample(int iTimeInc = 0);
	inline bool readVideoSample(int iTimeInc = 0);
	inline bool readAudioSample(int iTimeInc = 0);
	inline void writeH264(uint8_t *pucData,int iLen,uint32_t uiStamp);
	inline void writeAAC(uint8_t *pucData,int iLen,uint32_t uiStamp);
101 102


103
#endif //ENABLE_MP4V2
xzl committed
104 105 106 107 108
};

} /* namespace MediaFile */
} /* namespace ZL */

109
#endif /* SRC_MEDIAFILE_MEDIAREADER_H_ */