ZLMediaKit/src/Record/MPEG.h

112 lines
2.8 KiB
C++
Raw Normal View History

2021-12-28 21:04:53 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2021-12-28 21:04:53 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2021-12-28 21:04:53 +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
2021-12-28 21:04:53 +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.
*/
#ifndef ZLMEDIAKIT_MPEG_H
#define ZLMEDIAKIT_MPEG_H
#if defined(ENABLE_HLS) || defined(ENABLE_RTPPROXY)
#include <cstdio>
#include <cstdint>
#include <unordered_map>
#include "Extension/Frame.h"
#include "Extension/Track.h"
#include "Common/MediaSink.h"
#include "Util/ResourcePool.h"
2021-12-28 21:04:53 +08:00
namespace mediakit {
//该类用于产生MPEG-TS/MPEG-PS
class MpegMuxer : public MediaSinkInterface {
public:
MpegMuxer(bool is_ps = false);
2021-12-28 21:04:53 +08:00
~MpegMuxer() override;
/**
*
*/
bool addTrack(const Track::Ptr &track) override;
/**
*
*/
void resetTracks() override;
/**
*
*/
bool inputFrame(const Frame::Ptr &frame) override;
2022-10-16 19:49:56 +08:00
/**
* frame缓存
*/
void flush() override;
2021-12-28 21:04:53 +08:00
protected:
/**
* ts/ps数据回调
* @param buffer ts/ps数据包
* @param timestamp
* @param key_pos ts/ps包ts切片第一帧为关键帧
*/
2022-08-08 17:13:39 +08:00
virtual void onWrite(std::shared_ptr<toolkit::Buffer> buffer, uint64_t timestamp, bool key_pos) = 0;
2021-12-28 21:04:53 +08:00
private:
void createContext();
void releaseContext();
void onWrite_l(const void *packet, size_t bytes);
2022-01-06 15:30:09 +08:00
void flushCache();
2021-12-28 21:04:53 +08:00
private:
bool _is_ps = false;
bool _have_video = false;
bool _key_pos = false;
2022-01-06 15:30:09 +08:00
uint32_t _max_cache_size = 0;
2022-08-08 17:13:39 +08:00
uint64_t _timestamp = 0;
2021-12-29 14:18:52 +08:00
struct mpeg_muxer_t *_context = nullptr;
2023-12-09 22:34:22 +08:00
class FrameMergerImp : public FrameMerger {
public:
FrameMergerImp() : FrameMerger(FrameMerger::h264_prefix) {}
};
struct MP4Track {
int track_id = -1;
FrameMergerImp merger;
};
std::unordered_map<int, MP4Track> _tracks;
toolkit::BufferRaw::Ptr _current_buffer;
toolkit::ResourcePool<toolkit::BufferRaw> _buffer_pool;
2021-12-28 21:04:53 +08:00
};
}//mediakit
#else
#include "Common/MediaSink.h"
namespace mediakit {
class MpegMuxer : public MediaSinkInterface {
public:
MpegMuxer(bool is_ps = false) {}
2021-12-28 21:04:53 +08:00
bool addTrack(const Track::Ptr &track) override { return false; }
void resetTracks() override {}
bool inputFrame(const Frame::Ptr &frame) override { return false; }
protected:
2022-08-08 17:13:39 +08:00
virtual void onWrite(std::shared_ptr<toolkit::Buffer> buffer, uint64_t timestamp, bool key_pos) = 0;
2021-12-28 21:04:53 +08:00
};
}//namespace mediakit
#endif
#endif //ZLMEDIAKIT_MPEG_H