2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
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
|
|
|
|
|
2021-12-17 22:33:08 +08:00
|
|
|
|
class MP4Reader : public std::enable_shared_from_this<MP4Reader>, public MediaSourceEvent {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2021-12-17 22:33:08 +08:00
|
|
|
|
using Ptr = std::shared_ptr<MP4Reader>;
|
2019-04-03 11:49:58 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
2021-12-17 22:33:08 +08:00
|
|
|
|
* 点播一个mp4文件,使之转换成MediaSource流媒体
|
2021-12-15 20:50:35 +08:00
|
|
|
|
* @param vhost 虚拟主机
|
|
|
|
|
* @param app 应用名
|
2021-12-17 22:33:08 +08:00
|
|
|
|
* @param stream_id 流id,置空时,只解复用mp4,但是不生成MediaSource
|
2021-12-15 20:50:35 +08:00
|
|
|
|
* @param file_path 文件路径,如果为空则根据配置文件和上面参数自动生成,否则使用指定的文件
|
2020-03-20 11:51:24 +08:00
|
|
|
|
*/
|
2021-12-15 20:50:35 +08:00
|
|
|
|
MP4Reader(const string &vhost, const string &app, const string &stream_id, const string &file_path = "");
|
2021-12-17 22:33:08 +08:00
|
|
|
|
~MP4Reader() override = default;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
2021-12-17 22:33:08 +08:00
|
|
|
|
* 开始解复用MP4文件
|
|
|
|
|
* @param poller 解复用mp4定时器所绑定线程,置空则随机采用一条后台线程
|
|
|
|
|
* @param sample_ms 每次读取文件数据量,单位毫秒,置0时采用配置文件配置
|
|
|
|
|
* @param ref_self 是否让定时器引用此对象本身,如果无其他对象引用本身,在不循环读文件时,读取文件结束后本对象将自动销毁
|
|
|
|
|
* @param file_repeat 是否循环读取文件,如果配置文件设置为循环读文件,此参数无效
|
2020-03-20 11:51:24 +08:00
|
|
|
|
*/
|
2021-12-15 20:50:35 +08:00
|
|
|
|
void startReadMP4(const EventPoller::Ptr &poller = nullptr, uint64_t sample_ms = 0, bool ref_self = true, bool file_repeat = false);
|
2021-12-17 22:33:08 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 停止解复用MP4定时器
|
|
|
|
|
*/
|
2021-12-15 20:50:35 +08:00
|
|
|
|
void stopReadMP4();
|
|
|
|
|
|
2021-12-17 22:33:08 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取mp4解复用器
|
|
|
|
|
*/
|
2021-12-15 20:50:35 +08:00
|
|
|
|
const MP4Demuxer::Ptr& getDemuxer() const;
|
2020-09-20 19:45:04 +08:00
|
|
|
|
|
2018-10-29 11:12:37 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//MediaSourceEvent override
|
2021-09-29 00:04:36 +08:00
|
|
|
|
bool seekTo(MediaSource &sender,uint32_t stamp) override;
|
|
|
|
|
bool pause(MediaSource &sender, bool pause) override;
|
|
|
|
|
bool speed(MediaSource &sender, float speed) override;
|
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
bool close(MediaSource &sender,bool force) override;
|
|
|
|
|
int totalReaderCount(MediaSource &sender) override;
|
2020-09-27 11:32:49 +08:00
|
|
|
|
MediaOriginType getOriginType(MediaSource &sender) const override;
|
|
|
|
|
string getOriginUrl(MediaSource &sender) const override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2020-04-03 20:45:58 +08:00
|
|
|
|
bool readSample();
|
2021-12-17 22:33:08 +08:00
|
|
|
|
bool readNextSample();
|
2020-04-03 22:04:13 +08:00
|
|
|
|
uint32_t getCurrentStamp();
|
2021-12-17 22:33:08 +08:00
|
|
|
|
void setCurrentStamp(uint32_t stamp);
|
|
|
|
|
bool seekTo(uint32_t stamp_seek);
|
2020-09-20 19:45:04 +08:00
|
|
|
|
|
2020-04-03 20:45:58 +08:00
|
|
|
|
private:
|
2021-12-15 20:50:35 +08:00
|
|
|
|
bool _file_repeat = false;
|
2020-09-20 19:45:04 +08:00
|
|
|
|
bool _have_video = false;
|
2021-09-29 00:04:36 +08:00
|
|
|
|
bool _paused = false;
|
|
|
|
|
float _speed = 1.0;
|
2021-12-16 10:50:31 +08:00
|
|
|
|
uint32_t _last_dts = 0;
|
2021-12-17 22:33:08 +08:00
|
|
|
|
uint32_t _seek_to = 0;
|
2020-09-27 11:32:49 +08:00
|
|
|
|
string _file_path;
|
2020-09-20 19:45:04 +08:00
|
|
|
|
recursive_mutex _mtx;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
Ticker _seek_ticker;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
Timer::Ptr _timer;
|
2020-04-03 20:45:58 +08:00
|
|
|
|
MP4Demuxer::Ptr _demuxer;
|
2021-11-10 12:48:13 +08:00
|
|
|
|
MultiMediaSourceMuxer::Ptr _muxer;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2020-04-03 20:45:58 +08:00
|
|
|
|
#endif //ENABLE_MP4
|
2017-05-02 16:33:49 +08:00
|
|
|
|
#endif /* SRC_MEDIAFILE_MEDIAREADER_H_ */
|