ZLMediaKit/src/Record/MP4Reader.h

62 lines
2.2 KiB
C++
Raw Normal View History

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
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
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
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();
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();
2020-04-03 22:04:13 +08:00
uint32_t getCurrentStamp();
void setCurrentStamp(uint32_t ui32Stamp);
2020-04-03 20:45:58 +08:00
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
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 */
2020-04-03 20:45:58 +08:00
#endif //ENABLE_MP4
2017-05-02 16:33:49 +08:00
#endif /* SRC_MEDIAFILE_MEDIAREADER_H_ */