ZLMediaKit/src/Record/MP4Recorder.h

75 lines
1.6 KiB
C++
Raw Normal View History

2020-04-04 20:30:09 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2017-09-27 16:20:30 +08:00
*
2023-12-09 16:23:51 +08:00
* Use of this source code is governed by MIT-like license that can be found in the
2020-04-04 20:30:09 +08:00
* 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
*/
#ifndef MP4MAKER_H_
#define MP4MAKER_H_
#include <mutex>
#include <memory>
2018-10-28 00:15:27 +08:00
#include "Common/MediaSink.h"
#include "Record/Recorder.h"
2022-12-02 14:43:06 +08:00
#include "MP4Muxer.h"
2020-09-15 19:09:26 +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
#ifdef ENABLE_MP4
class MP4Muxer;
2022-10-16 19:49:56 +08:00
class MP4Recorder final : public MediaSinkInterface {
2017-04-01 16:35:56 +08:00
public:
2021-10-20 17:37:19 +08:00
using Ptr = std::shared_ptr<MP4Recorder>;
2019-12-04 18:36:30 +08:00
MP4Recorder(const MediaTuple &tuple, const std::string &path, size_t max_second);
2021-10-20 17:37:19 +08:00
~MP4Recorder() override;
2020-03-20 11:51:24 +08:00
/**
* Track
*/
void resetTracks() override;
2019-12-03 12:32:57 +08:00
2020-03-20 11:51:24 +08:00
/**
2019-12-03 12:32:57 +08:00
* frame
2018-10-28 00:15:27 +08:00
*/
bool inputFrame(const Frame::Ptr &frame) override;
2018-10-28 00:15:27 +08:00
2022-10-16 19:49:56 +08:00
/**
* frame缓存
*/
void flush() override;
2019-08-01 22:07:40 +08:00
/**
2019-12-03 12:32:57 +08:00
* ready状态的track
2019-08-01 22:07:40 +08:00
*/
bool addTrack(const Track::Ptr & track) override;
2018-10-28 00:15:27 +08:00
private:
void createFile();
void closeFile();
2019-04-03 11:09:50 +08:00
void asyncClose();
2021-10-20 17:37:19 +08:00
2017-04-01 16:35:56 +08:00
private:
2021-10-20 17:37:19 +08:00
bool _have_video = false;
size_t _max_second;
uint64_t _last_dts = 0;
uint64_t _file_index = 0;
std::string _folder_path;
std::string _full_path;
std::string _full_path_tmp;
2020-09-15 19:09:26 +08:00
RecordInfo _info;
2022-12-02 14:43:06 +08:00
MP4Muxer::Ptr _muxer;
std::list<Track::Ptr> _tracks;
2017-04-01 16:35:56 +08:00
};
2020-04-03 20:45:58 +08:00
#endif ///ENABLE_MP4
2017-04-01 16:35:56 +08:00
2019-12-23 18:50:46 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* MP4MAKER_H_ */