ZLMediaKit/ext-codec/H264Rtmp.h

79 lines
2.0 KiB
C++
Raw Normal View History

2018-10-25 10:00:17 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2018-10-25 10:00:17 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2018-10-25 10:00:17 +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.
2018-10-25 10:00:17 +08:00
*/
2018-10-24 12:01:40 +08:00
#ifndef ZLMEDIAKIT_H264RTMPCODEC_H
#define ZLMEDIAKIT_H264RTMPCODEC_H
2023-12-10 10:21:40 +08:00
#include "H264.h"
2019-06-28 17:30:13 +08:00
#include "Rtmp/RtmpCodec.h"
2018-10-30 14:59:42 +08:00
#include "Extension/Track.h"
2018-10-24 12:01:40 +08:00
2023-12-10 10:21:40 +08:00
namespace mediakit {
2018-10-24 12:01:40 +08:00
/**
* h264 Rtmp解码类
2019-08-30 11:17:27 +08:00
* h264 over rtmp h264-Frame
2018-10-24 12:01:40 +08:00
*/
2021-02-05 11:51:16 +08:00
class H264RtmpDecoder : public RtmpCodec {
2018-10-24 12:01:40 +08:00
public:
2022-12-02 14:43:06 +08:00
using Ptr = std::shared_ptr<H264RtmpDecoder>;
2018-10-24 12:01:40 +08:00
2023-12-09 16:23:51 +08:00
H264RtmpDecoder(const Track::Ptr &track) : RtmpCodec(track) {}
2018-10-24 12:01:40 +08:00
/**
* 264 Rtmp包
* @param rtmp Rtmp包
*/
void inputRtmp(const RtmpPacket::Ptr &rtmp) override;
2018-10-24 12:01:40 +08:00
2023-12-09 16:23:51 +08:00
private:
void outputFrame(const char *data, size_t len, uint32_t dts, uint32_t pts);
void splitFrame(const uint8_t *data, size_t size, uint32_t dts, uint32_t pts);
2018-10-24 12:01:40 +08:00
};
/**
* 264 Rtmp打包类
*/
2023-12-09 16:23:51 +08:00
class H264RtmpEncoder : public RtmpCodec {
2018-10-24 12:01:40 +08:00
public:
2022-12-02 14:43:06 +08:00
using Ptr = std::shared_ptr<H264RtmpEncoder>;
2018-10-24 12:01:40 +08:00
/**
* track可以为空inputFrame时输入sps pps
* track不为空且包含sps pps信息
* inputFrame时可以不输入sps pps
* @param track
*/
2023-12-09 16:23:51 +08:00
H264RtmpEncoder(const Track::Ptr &track) : RtmpCodec(track) {}
2018-10-24 12:01:40 +08:00
/**
* 264sps pps
2018-10-24 12:01:40 +08:00
* @param frame
*/
bool inputFrame(const Frame::Ptr &frame) override;
2022-10-16 19:49:56 +08:00
/**
* frame缓存
*/
void flush() override;
/**
* config包
*/
void makeConfigPacket() override;
2018-10-24 12:01:40 +08:00
private:
2021-06-28 10:35:08 +08:00
RtmpPacket::Ptr _rtmp_packet;
2023-12-09 16:23:51 +08:00
FrameMerger _merger { FrameMerger::mp4_nal_size };
2018-10-24 12:01:40 +08:00
};
2018-10-24 17:17:55 +08:00
}//namespace mediakit
2018-10-24 12:01:40 +08:00
#endif //ZLMEDIAKIT_H264RTMPCODEC_H