ZLMediaKit/src/Extension/H264Rtmp.cpp

266 lines
7.9 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/xiongziliang/ZLMediaKit).
*
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
}
H264Frame::Ptr H264RtmpDecoder::obtainFrame() {
//从缓存池重新申请对象,防止覆盖已经写入环形缓存的对象
auto frame = obtainObj();
frame->_buffer.clear();
frame->_prefix_size = 4;
2018-10-24 12:01:40 +08:00
return frame;
}
bool H264RtmpDecoder::inputRtmp(const RtmpPacket::Ptr &rtmp, bool key_pos) {
2019-12-26 09:43:44 +08:00
return decodeRtmp(rtmp);
2018-10-24 12:01:40 +08:00
}
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;
}
if (thiz.strBuf.size() < 13) {
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t sps_size ;
memcpy(&sps_size, thiz.strBuf.data() + 11,2);
sps_size = ntohs(sps_size);
if ((int) thiz.strBuf.size() < 13 + sps_size) {
WarnL << "bad H264 cfg!";
return ret;
}
ret.assign(thiz.strBuf.data() + 13, sps_size);
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;
}
if (thiz.strBuf.size() < 13) {
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t sps_size ;
memcpy(&sps_size,thiz.strBuf.data() + 11,2);
sps_size = ntohs(sps_size);
if ((int) thiz.strBuf.size() < 13 + sps_size + 1 + 2) {
WarnL << "bad H264 cfg!";
return ret;
}
uint16_t pps_size ;
memcpy(&pps_size, thiz.strBuf.data() + 13 + sps_size + 1,2);
pps_size = ntohs(pps_size);
if ((int) thiz.strBuf.size() < 13 + sps_size + 1 + 2 + pps_size) {
WarnL << "bad H264 cfg!";
return ret;
}
ret.assign(thiz.strBuf.data() + 13 + sps_size + 1 + 2, pps_size);
return ret;
}
2018-10-24 12:01:40 +08:00
bool H264RtmpDecoder::decodeRtmp(const RtmpPacket::Ptr &pkt) {
if (pkt->isCfgFrame()) {
//缓存sps pps后续插入到I帧之前
2020-04-04 22:54:49 +08:00
_sps = getH264SPS(*pkt);
_pps = getH264PPS(*pkt);
onGetH264(_sps.data(), _sps.size(), pkt->timeStamp , pkt->timeStamp);
onGetH264(_pps.data(), _pps.size(), pkt->timeStamp , pkt->timeStamp);
2018-10-24 12:01:40 +08:00
return false;
}
if (pkt->strBuf.size() > 9) {
2018-10-24 12:01:40 +08:00
uint32_t iTotalLen = pkt->strBuf.size();
uint32_t iOffset = 5;
2018-11-17 17:47:43 +08:00
uint8_t *cts_ptr = (uint8_t *) (pkt->strBuf.data() + 2);
int32_t cts = (((cts_ptr[0] << 16) | (cts_ptr[1] << 8) | (cts_ptr[2])) + 0xff800000) ^ 0xff800000;
auto pts = pkt->timeStamp + cts;
2018-10-24 12:01:40 +08:00
while(iOffset + 4 < iTotalLen){
uint32_t iFrameLen;
memcpy(&iFrameLen, pkt->strBuf.data() + iOffset, 4);
iFrameLen = ntohl(iFrameLen);
iOffset += 4;
if(iFrameLen + iOffset > iTotalLen){
break;
}
onGetH264(pkt->strBuf.data() + iOffset, iFrameLen, pkt->timeStamp , pts);
2018-10-24 12:01:40 +08:00
iOffset += iFrameLen;
}
}
return pkt->isVideoKeyFrame();
}
2018-11-17 17:47:43 +08:00
inline void H264RtmpDecoder::onGetH264(const char* pcData, int 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;
_h264frame->_buffer.assign("\x0\x0\x0\x1", 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();
_gotSpsPps = true;
}
2018-10-24 12:01:40 +08:00
}
void H264RtmpEncoder::inputFrame(const Frame::Ptr &frame) {
auto pcData = frame->data() + frame->prefixSize();
auto iLen = frame->size() - frame->prefixSize();
2018-10-30 15:56:00 +08:00
auto type = H264_TYPE(((uint8_t*)pcData)[0]);
2020-07-16 16:26:13 +08:00
if(type == H264Frame::NAL_SEI){
return;
}
2018-10-24 12:01:40 +08:00
if (!_gotSpsPps) {
2018-10-25 14:23:02 +08:00
//尝试从frame中获取sps pps
switch (type) {
case H264Frame::NAL_SPS: {
2018-10-25 14:23:02 +08:00
//sps
_sps = string(pcData, iLen);
makeConfigPacket();
2018-10-25 14:23:02 +08:00
break;
2018-10-24 12:01:40 +08:00
}
case H264Frame::NAL_PPS: {
//pps
_pps = string(pcData, iLen);
makeConfigPacket();
2018-10-25 14:23:02 +08:00
break;
}
2018-10-25 14:23:02 +08:00
default:
break;
2018-10-24 12:01:40 +08:00
}
}
if(_lastPacket && _lastPacket->timeStamp != frame->dts()) {
RtmpCodec::inputRtmp(_lastPacket, _lastPacket->isVideoKeyFrame());
_lastPacket = nullptr;
}
if(!_lastPacket) {
//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);
_lastPacket = ResourcePoolHelper<RtmpPacket>::obtainObj();
_lastPacket->strBuf.clear();
_lastPacket->strBuf.push_back(flags);
_lastPacket->strBuf.push_back(!is_config);
auto cts = frame->pts() - frame->dts();
cts = htonl(cts);
_lastPacket->strBuf.append((char *)&cts + 1, 3);
_lastPacket->chunkId = CHUNK_VIDEO;
_lastPacket->streamId = STREAM_MEDIA;
_lastPacket->timeStamp = frame->dts();
_lastPacket->typeId = MSG_VIDEO;
2018-10-24 12:01:40 +08:00
}
auto size = htonl(iLen);
_lastPacket->strBuf.append((char *) &size, 4);
_lastPacket->strBuf.append(pcData, iLen);
_lastPacket->bodySize = _lastPacket->strBuf.size();
2018-10-24 12:01:40 +08:00
}
void H264RtmpEncoder::makeVideoConfigPkt() {
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;
RtmpPacket::Ptr rtmpPkt = ResourcePoolHelper<RtmpPacket>::obtainObj();
2018-10-24 17:50:09 +08:00
rtmpPkt->strBuf.clear();
2020-04-04 22:54:49 +08:00
//header
2018-10-24 12:01:40 +08:00
rtmpPkt->strBuf.push_back(flags);
rtmpPkt->strBuf.push_back(!is_config);
2020-04-04 22:54:49 +08:00
//cts
2018-10-24 12:01:40 +08:00
rtmpPkt->strBuf.append("\x0\x0\x0", 3);
2020-04-04 22:54:49 +08:00
//AVCDecoderConfigurationRecord start
2018-10-24 12:01:40 +08:00
rtmpPkt->strBuf.push_back(1); // version
2018-10-24 15:43:52 +08:00
rtmpPkt->strBuf.push_back(_sps[1]); // profile
rtmpPkt->strBuf.push_back(_sps[2]); // compat
rtmpPkt->strBuf.push_back(_sps[3]); // level
2018-10-24 12:01:40 +08:00
rtmpPkt->strBuf.push_back(0xff); // 6 bits reserved + 2 bits nal size length - 1 (11)
rtmpPkt->strBuf.push_back(0xe1); // 3 bits reserved + 5 bits number of sps (00001)
2020-04-04 22:54:49 +08:00
//sps
2018-10-24 15:43:52 +08:00
uint16_t size = _sps.size();
2018-10-24 12:01:40 +08:00
size = htons(size);
rtmpPkt->strBuf.append((char *) &size, 2);
2018-10-24 15:43:52 +08:00
rtmpPkt->strBuf.append(_sps);
2020-04-04 22:54:49 +08:00
//pps
2018-10-24 12:01:40 +08:00
rtmpPkt->strBuf.push_back(1); // version
2018-10-24 15:43:52 +08:00
size = _pps.size();
2018-10-24 12:01:40 +08:00
size = htons(size);
rtmpPkt->strBuf.append((char *) &size, 2);
2018-10-24 15:43:52 +08:00
rtmpPkt->strBuf.append(_pps);
2018-10-24 12:01:40 +08:00
rtmpPkt->bodySize = rtmpPkt->strBuf.size();
rtmpPkt->chunkId = CHUNK_VIDEO;
rtmpPkt->streamId = STREAM_MEDIA;
rtmpPkt->timeStamp = 0;
rtmpPkt->typeId = MSG_VIDEO;
RtmpCodec::inputRtmp(rtmpPkt, false);
2018-10-24 12:01:40 +08:00
}
2018-10-24 17:17:55 +08:00
}//namespace mediakit