ZLMediaKit/src/Extension/H264Rtmp.cpp

253 lines
7.5 KiB
C++
Raw Normal View History

2018-10-25 10:00:17 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2018-10-25 10:00:17 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2018-10-25 10:00:17 +08:00
*
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.
2018-10-25 10:00:17 +08:00
*/
2018-10-24 12:01:40 +08:00
2019-06-28 17:37:11 +08:00
#include "H264Rtmp.h"
2018-10-24 17:17:55 +08:00
namespace mediakit{
2018-10-24 12:01:40 +08:00
H264RtmpDecoder::H264RtmpDecoder() {
2018-10-24 15:43:52 +08:00
_h264frame = obtainFrame();
2018-10-24 12:01:40 +08:00
}
2021-02-05 11:51:16 +08:00
H264Frame::Ptr H264RtmpDecoder::obtainFrame() {
auto frame = FrameImp::create<H264Frame>();
frame->_prefix_size = 4;
2018-10-24 12:01:40 +08:00
return frame;
}
2020-04-04 22:54:49 +08:00
/**
* 0x00 00 00 01sps
* @return
*/
static string getH264SPS(const RtmpPacket &thiz) {
string ret;
if (thiz.getMediaType() != FLV_CODEC_H264) {
return ret;
}
if (!thiz.isCfgFrame()) {
return ret;
}
2020-08-30 10:48:34 +08:00
if (thiz.buffer.size() < 13) {
2020-04-04 22:54:49 +08:00
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t sps_size ;
2020-08-30 10:48:34 +08:00
memcpy(&sps_size, thiz.buffer.data() + 11, 2);
2020-04-04 22:54:49 +08:00
sps_size = ntohs(sps_size);
2020-08-30 10:48:34 +08:00
if ((int) thiz.buffer.size() < 13 + sps_size) {
2020-04-04 22:54:49 +08:00
WarnL << "bad H264 cfg!";
return ret;
}
2020-08-30 10:48:34 +08:00
ret.assign(thiz.buffer.data() + 13, sps_size);
2020-04-04 22:54:49 +08:00
return ret;
}
/**
* 0x00 00 00 01pps
* @return
*/
static string getH264PPS(const RtmpPacket &thiz) {
string ret;
if (thiz.getMediaType() != FLV_CODEC_H264) {
return ret;
}
if (!thiz.isCfgFrame()) {
return ret;
}
2020-08-30 10:48:34 +08:00
if (thiz.buffer.size() < 13) {
2020-04-04 22:54:49 +08:00
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t sps_size ;
2020-08-30 10:48:34 +08:00
memcpy(&sps_size, thiz.buffer.data() + 11, 2);
2020-04-04 22:54:49 +08:00
sps_size = ntohs(sps_size);
2020-08-30 10:48:34 +08:00
if ((int) thiz.buffer.size() < 13 + sps_size + 1 + 2) {
2020-04-04 22:54:49 +08:00
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t pps_size ;
2020-08-30 10:48:34 +08:00
memcpy(&pps_size, thiz.buffer.data() + 13 + sps_size + 1, 2);
2020-04-04 22:54:49 +08:00
pps_size = ntohs(pps_size);
2020-08-30 10:48:34 +08:00
if ((int) thiz.buffer.size() < 13 + sps_size + 1 + 2 + pps_size) {
2020-04-04 22:54:49 +08:00
WarnL << "bad H264 cfg!";
return ret;
}
2020-08-30 10:48:34 +08:00
ret.assign(thiz.buffer.data() + 13 + sps_size + 1 + 2, pps_size);
2020-04-04 22:54:49 +08:00
return ret;
}
void H264RtmpDecoder::inputRtmp(const RtmpPacket::Ptr &pkt) {
2018-10-24 12:01:40 +08:00
if (pkt->isCfgFrame()) {
//缓存sps pps后续插入到I帧之前
2020-04-04 22:54:49 +08:00
_sps = getH264SPS(*pkt);
_pps = getH264PPS(*pkt);
2020-08-30 10:48:34 +08:00
onGetH264(_sps.data(), _sps.size(), pkt->time_stamp , pkt->time_stamp);
onGetH264(_pps.data(), _pps.size(), pkt->time_stamp , pkt->time_stamp);
return;
2018-10-24 12:01:40 +08:00
}
2020-08-30 10:48:34 +08:00
if (pkt->buffer.size() > 9) {
2021-06-28 10:35:08 +08:00
auto total_len = pkt->buffer.size();
size_t offset = 5;
2020-08-30 10:48:34 +08:00
uint8_t *cts_ptr = (uint8_t *) (pkt->buffer.data() + 2);
2018-11-17 17:47:43 +08:00
int32_t cts = (((cts_ptr[0] << 16) | (cts_ptr[1] << 8) | (cts_ptr[2])) + 0xff800000) ^ 0xff800000;
2020-08-30 10:48:34 +08:00
auto pts = pkt->time_stamp + cts;
2021-06-28 10:35:08 +08:00
while (offset + 4 < total_len) {
uint32_t frame_len;
memcpy(&frame_len, pkt->buffer.data() + offset, 4);
frame_len = ntohl(frame_len);
offset += 4;
if (frame_len + offset > total_len) {
2018-10-24 12:01:40 +08:00
break;
}
2021-06-28 10:35:08 +08:00
onGetH264(pkt->buffer.data() + offset, frame_len, pkt->time_stamp, pts);
offset += frame_len;
2018-10-24 12:01:40 +08:00
}
}
}
inline void H264RtmpDecoder::onGetH264(const char* pcData, size_t iLen, uint32_t dts,uint32_t pts) {
2020-04-04 22:54:49 +08:00
if(iLen == 0){
return;
}
2019-07-25 12:18:17 +08:00
#if 1
_h264frame->_dts = dts;
_h264frame->_pts = pts;
2021-02-05 11:51:16 +08:00
_h264frame->_buffer.assign("\x00\x00\x00\x01", 4); //添加264头
_h264frame->_buffer.append(pcData, iLen);
2018-10-24 12:01:40 +08:00
//写入环形缓存
2018-10-24 15:43:52 +08:00
RtmpCodec::inputFrame(_h264frame);
_h264frame = obtainFrame();
#else
//防止内存拷贝这样产生的264帧不会有0x00 00 01头
auto frame = std::make_shared<H264FrameNoCacheAble>((char *)pcData,iLen,dts,pts,0);
RtmpCodec::inputFrame(frame);
#endif
2018-10-24 12:01:40 +08:00
}
////////////////////////////////////////////////////////////////////////
H264RtmpEncoder::H264RtmpEncoder(const Track::Ptr &track) {
_track = dynamic_pointer_cast<H264Track>(track);
}
void H264RtmpEncoder::makeConfigPacket(){
if (_track && _track->ready()) {
//尝试从track中获取sps pps信息
_sps = _track->getSps();
_pps = _track->getPps();
}
2018-11-17 16:26:43 +08:00
if (!_sps.empty() && !_pps.empty()) {
//获取到sps/pps
makeVideoConfigPkt();
2021-06-28 10:35:08 +08:00
_got_config_frame = true;
}
2018-10-24 12:01:40 +08:00
}
void H264RtmpEncoder::inputFrame(const Frame::Ptr &frame) {
2021-06-28 10:35:08 +08:00
auto data = frame->data() + frame->prefixSize();
auto len = frame->size() - frame->prefixSize();
auto type = H264_TYPE(data[0]);
2021-06-28 10:35:08 +08:00
switch (type) {
case H264Frame::NAL_SPS: {
if (!_got_config_frame) {
_sps = string(data, len);
makeConfigPacket();
2018-10-24 12:01:40 +08:00
}
2021-06-28 10:35:08 +08:00
break;
}
case H264Frame::NAL_PPS: {
if (!_got_config_frame) {
_pps = string(data, len);
makeConfigPacket();
}
2021-06-28 10:35:08 +08:00
break;
2018-10-24 12:01:40 +08:00
}
2021-06-28 10:35:08 +08:00
default : break;
}
2021-06-28 10:35:08 +08:00
if (!_rtmp_packet) {
//I or P or B frame
2020-04-04 22:54:49 +08:00
int8_t flags = FLV_CODEC_H264;
bool is_config = false;
flags |= (((frame->configFrame() || frame->keyFrame()) ? FLV_KEY_FRAME : FLV_INTER_FRAME) << 4);
2021-06-28 10:35:08 +08:00
_rtmp_packet = RtmpPacket::create();
_rtmp_packet->buffer.clear();
2021-06-28 10:35:08 +08:00
_rtmp_packet->buffer.push_back(flags);
_rtmp_packet->buffer.push_back(!is_config);
2020-11-07 17:44:30 +08:00
int32_t cts = frame->pts() - frame->dts();
if (cts < 0) {
cts = 0;
}
cts = htonl(cts);
2021-06-28 10:35:08 +08:00
_rtmp_packet->buffer.append((char *) &cts + 1, 3);
_rtmp_packet->chunk_id = CHUNK_VIDEO;
_rtmp_packet->stream_index = STREAM_MEDIA;
_rtmp_packet->time_stamp = frame->dts();
_rtmp_packet->type_id = MSG_VIDEO;
}
_merger.inputFrame(frame, [&](uint32_t, uint32_t, const Buffer::Ptr &, bool) {
//输出rtmp packet
_rtmp_packet->body_size = _rtmp_packet->buffer.size();
RtmpCodec::inputRtmp(_rtmp_packet);
_rtmp_packet = nullptr;
}, &_rtmp_packet->buffer);
2018-10-24 12:01:40 +08:00
}
void H264RtmpEncoder::makeVideoConfigPkt() {
2021-02-28 20:58:30 +08:00
if (_sps.size() < 4) {
WarnL << "sps长度不足4字节";
return;
}
2020-04-04 22:54:49 +08:00
int8_t flags = FLV_CODEC_H264;
2018-10-24 12:01:40 +08:00
flags |= (FLV_KEY_FRAME << 4);
bool is_config = true;
2021-02-04 17:58:51 +08:00
auto rtmpPkt = RtmpPacket::create();
2020-04-04 22:54:49 +08:00
//header
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.push_back(flags);
rtmpPkt->buffer.push_back(!is_config);
2020-04-04 22:54:49 +08:00
//cts
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.append("\x0\x0\x0", 3);
2018-10-24 12:01:40 +08:00
2020-04-04 22:54:49 +08:00
//AVCDecoderConfigurationRecord start
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.push_back(1); // version
rtmpPkt->buffer.push_back(_sps[1]); // profile
rtmpPkt->buffer.push_back(_sps[2]); // compat
rtmpPkt->buffer.push_back(_sps[3]); // level
rtmpPkt->buffer.push_back((char)0xff); // 6 bits reserved + 2 bits nal size length - 1 (11)
rtmpPkt->buffer.push_back((char)0xe1); // 3 bits reserved + 5 bits number of sps (00001)
2020-04-04 22:54:49 +08:00
//sps
uint16_t size = (uint16_t)_sps.size();
2018-10-24 12:01:40 +08:00
size = htons(size);
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.append((char *) &size, 2);
rtmpPkt->buffer.append(_sps);
2020-04-04 22:54:49 +08:00
//pps
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.push_back(1); // version
size = (uint16_t)_pps.size();
2018-10-24 12:01:40 +08:00
size = htons(size);
2020-08-30 10:48:34 +08:00
rtmpPkt->buffer.append((char *) &size, 2);
rtmpPkt->buffer.append(_pps);
2018-10-24 12:01:40 +08:00
2020-08-30 10:48:34 +08:00
rtmpPkt->body_size = rtmpPkt->buffer.size();
rtmpPkt->chunk_id = CHUNK_VIDEO;
rtmpPkt->stream_index = STREAM_MEDIA;
rtmpPkt->time_stamp = 0;
rtmpPkt->type_id = MSG_VIDEO;
RtmpCodec::inputRtmp(rtmpPkt);
2018-10-24 12:01:40 +08:00
}
2018-10-24 17:17:55 +08:00
}//namespace mediakit