2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2017-05-02 16:33:49 +08:00
|
|
|
|
#ifndef SRC_MEDIAFILE_MEDIAREADER_H_
|
|
|
|
|
#define SRC_MEDIAFILE_MEDIAREADER_H_
|
2020-04-03 20:45:58 +08:00
|
|
|
|
#ifdef ENABLE_MP4
|
|
|
|
|
#include "MP4Demuxer.h"
|
2019-06-28 17:25:53 +08:00
|
|
|
|
#include "Common/MultiMediaSourceMuxer.h"
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2019-12-04 10:45:38 +08:00
|
|
|
|
class MP4Reader : public std::enable_shared_from_this<MP4Reader> ,public MediaSourceEvent{
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
typedef std::shared_ptr<MP4Reader> Ptr;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
virtual ~MP4Reader() = default;
|
2019-04-03 11:49:58 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
* 流化一个mp4文件,使之转换成RtspMediaSource和RtmpMediaSource
|
|
|
|
|
* @param strVhost 虚拟主机
|
|
|
|
|
* @param strApp 应用名
|
|
|
|
|
* @param strId 流id
|
|
|
|
|
* @param filePath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
|
|
|
|
|
*/
|
|
|
|
|
MP4Reader(const string &strVhost,const string &strApp, const string &strId,const string &filePath = "");
|
2020-04-03 20:45:58 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
* 开始流化MP4文件,需要指出的是,MP4Reader对象一经过调用startReadMP4方法,它的强引用会自持有,
|
|
|
|
|
* 意思是在文件流化结束之前或中断之前,MP4Reader对象是不会被销毁的(不管有没有被外部对象持有)
|
|
|
|
|
*/
|
|
|
|
|
void startReadMP4();
|
2018-10-29 11:12:37 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//MediaSourceEvent override
|
|
|
|
|
bool seekTo(MediaSource &sender,uint32_t ui32Stamp) override;
|
|
|
|
|
bool close(MediaSource &sender,bool force) override;
|
|
|
|
|
int totalReaderCount(MediaSource &sender) override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2020-04-03 20:45:58 +08:00
|
|
|
|
bool readSample();
|
|
|
|
|
uint32_t nextStampForStop();
|
|
|
|
|
void setNextStampForStop(uint32_t ui32Stamp);
|
|
|
|
|
bool seekTo(uint32_t ui32Stamp);
|
|
|
|
|
private:
|
|
|
|
|
recursive_mutex _mtx;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
MultiMediaSourceMuxer::Ptr _mediaMuxer;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
uint32_t _seek_to;
|
|
|
|
|
Ticker _seek_ticker;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
Ticker _alive;
|
|
|
|
|
Timer::Ptr _timer;
|
|
|
|
|
EventPoller::Ptr _poller;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
MP4Demuxer::Ptr _demuxer;
|
|
|
|
|
bool _have_video = false;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2020-04-03 20:45:58 +08:00
|
|
|
|
#endif //ENABLE_MP4
|
|
|
|
|
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
/**
|
|
|
|
|
* 自动生成MP4Reader对象然后查找相关的MediaSource对象
|
|
|
|
|
* @param strSchema 协议名
|
|
|
|
|
* @param strVhost 虚拟主机
|
|
|
|
|
* @param strApp 应用名
|
|
|
|
|
* @param strId 流id
|
|
|
|
|
* @param filePath 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
|
|
|
|
|
* @param checkApp 是否检查app,防止服务器上文件被乱访问
|
|
|
|
|
* @return MediaSource
|
|
|
|
|
*/
|
|
|
|
|
MediaSource::Ptr onMakeMediaSource(const string &strSchema,
|
|
|
|
|
const string &strVhost,
|
|
|
|
|
const string &strApp,
|
|
|
|
|
const string &strId,
|
|
|
|
|
const string &filePath = "",
|
|
|
|
|
bool checkApp = true);
|
|
|
|
|
} /* namespace mediakit */
|
2017-05-02 16:33:49 +08:00
|
|
|
|
#endif /* SRC_MEDIAFILE_MEDIAREADER_H_ */
|