mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-26 04:31:37 +08:00
754073918a
* 优化MultiMediaSourceMuxer头文件包含 * 将MediaSinkDelegate和Demux移到MediaSink中 * MediaSource头文件重构, 独立出PacketCache.h 精简Frame和Track的头文件 * Rtmp头文件重构 * Rtsp头文件重构 * webrtc头文件重构 * 规范.h头文件包含,并将其移到.cpp中: - 尽量不包含Common\config.h - Util\File.h - Rtsp/RtspPlayer.h - Rtmp/RtmpPlayer.h * 删除多余的Stamp.h和Base64包含
95 lines
2.2 KiB
C++
95 lines
2.2 KiB
C++
/*
|
||
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
||
*
|
||
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
||
*
|
||
* 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.
|
||
*/
|
||
|
||
#ifndef ZLMEDIAKIT_H264RTMPCODEC_H
|
||
#define ZLMEDIAKIT_H264RTMPCODEC_H
|
||
|
||
#include "Rtmp/RtmpCodec.h"
|
||
#include "Extension/Track.h"
|
||
#include "Extension/H264.h"
|
||
|
||
namespace mediakit{
|
||
/**
|
||
* h264 Rtmp解码类
|
||
* 将 h264 over rtmp 解复用出 h264-Frame
|
||
*/
|
||
class H264RtmpDecoder : public RtmpCodec {
|
||
public:
|
||
typedef std::shared_ptr<H264RtmpDecoder> Ptr;
|
||
|
||
H264RtmpDecoder();
|
||
~H264RtmpDecoder() {}
|
||
|
||
/**
|
||
* 输入264 Rtmp包
|
||
* @param rtmp Rtmp包
|
||
*/
|
||
void inputRtmp(const RtmpPacket::Ptr &rtmp) override;
|
||
|
||
CodecId getCodecId() const override{
|
||
return CodecH264;
|
||
}
|
||
|
||
protected:
|
||
void onGetH264(const char *data, size_t len, uint32_t dts, uint32_t pts);
|
||
H264Frame::Ptr obtainFrame();
|
||
|
||
protected:
|
||
H264Frame::Ptr _h264frame;
|
||
std::string _sps;
|
||
std::string _pps;
|
||
};
|
||
|
||
/**
|
||
* 264 Rtmp打包类
|
||
*/
|
||
class H264RtmpEncoder : public H264RtmpDecoder{
|
||
public:
|
||
typedef std::shared_ptr<H264RtmpEncoder> Ptr;
|
||
|
||
/**
|
||
* 构造函数,track可以为空,此时则在inputFrame时输入sps pps
|
||
* 如果track不为空且包含sps pps信息,
|
||
* 那么inputFrame时可以不输入sps pps
|
||
* @param track
|
||
*/
|
||
H264RtmpEncoder(const Track::Ptr &track);
|
||
~H264RtmpEncoder() = default;
|
||
|
||
/**
|
||
* 输入264帧,可以不带sps pps
|
||
* @param frame 帧数据
|
||
*/
|
||
bool inputFrame(const Frame::Ptr &frame) override;
|
||
|
||
/**
|
||
* 刷新输出所有frame缓存
|
||
*/
|
||
void flush() override;
|
||
|
||
/**
|
||
* 生成config包
|
||
*/
|
||
void makeConfigPacket() override;
|
||
|
||
private:
|
||
void makeVideoConfigPkt();
|
||
|
||
private:
|
||
bool _got_config_frame = false;
|
||
H264Track::Ptr _track;
|
||
RtmpPacket::Ptr _rtmp_packet;
|
||
FrameMerger _merger{FrameMerger::mp4_nal_size};
|
||
};
|
||
|
||
}//namespace mediakit
|
||
|
||
#endif //ZLMEDIAKIT_H264RTMPCODEC_H
|