ZLMediaKit/src/Rtsp/RtspSplitter.cpp

89 lines
2.1 KiB
C++
Raw Normal View History

2018-10-30 10:31:27 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2018-10-30 10:31:27 +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-30 10:31:27 +08:00
*/
2019-01-16 14:26:06 +08:00
#include <cstdlib>
2018-10-30 10:31:27 +08:00
#include "RtspSplitter.h"
2020-05-25 21:54:43 +08:00
#include "Util/logger.h"
#include "Util/util.h"
2018-10-30 10:31:27 +08:00
namespace mediakit{
const char *RtspSplitter::onSearchPacketTail(const char *data, int len) {
2020-05-25 21:54:43 +08:00
auto ret = onSearchPacketTail_l(data, len);
if(ret){
return ret;
}
if (len > 256 * 1024) {
//rtp大于256KB
ret = (char *) memchr(data, '$', len);
if (!ret) {
WarnL << "rtp缓存溢出:" << hexdump(data, 1024);
reset();
}
}
return ret;
}
const char *RtspSplitter::onSearchPacketTail_l(const char *data, int len) {
2019-09-18 10:27:40 +08:00
if(!_enableRecvRtp || data[0] != '$'){
2018-10-30 10:31:27 +08:00
//这是rtsp包
_isRtpPacket = false;
return HttpRequestSplitter::onSearchPacketTail(data, len);
}
//这是rtp包
if(len < 4){
//数据不够
return nullptr;
}
uint16_t length = (((uint8_t *)data)[2] << 8) | ((uint8_t *)data)[3];
if(len < length + 4){
//数据不够
return nullptr;
}
//返回rtp包末尾
_isRtpPacket = true;
return data + 4 + length;
}
int64_t RtspSplitter::onRecvHeader(const char *data, uint64_t len) {
if(_isRtpPacket){
onRtpPacket(data,len);
return 0;
}
_parser.Parse(data);
2018-12-17 15:21:23 +08:00
auto ret = getContentLength(_parser);
2018-10-30 10:31:27 +08:00
if(ret == 0){
onWholeRtspPacket(_parser);
2018-12-17 15:21:23 +08:00
_parser.Clear();
2018-10-30 10:31:27 +08:00
}
return ret;
}
void RtspSplitter::onRecvContent(const char *data, uint64_t len) {
_parser.setContent(string(data,len));
onWholeRtspPacket(_parser);
2018-12-17 15:21:23 +08:00
_parser.Clear();
2018-10-30 10:31:27 +08:00
}
void RtspSplitter::enableRecvRtp(bool enable) {
_enableRecvRtp = enable;
}
2018-12-17 15:21:23 +08:00
int64_t RtspSplitter::getContentLength(Parser &parser) {
return atoi(parser["Content-Length"].data());
}
2018-10-30 10:31:27 +08:00
}//namespace mediakit