PSDecoder: 缓存未处理完的数据

This commit is contained in:
wxf
2021-07-18 15:02:48 +08:00
parent 892b2d2ef9
commit 5172b846d3
2 changed files with 35 additions and 2 deletions

View File

@@ -45,7 +45,8 @@ PSDecoder::~PSDecoder() {
}
ssize_t PSDecoder::input(const uint8_t *data, size_t bytes) {
return ps_demuxer_input((struct ps_demuxer_t*)_ps_demuxer,data,bytes);
HttpRequestSplitter::input(reinterpret_cast<const char *>(data), bytes);
return bytes;
}
void PSDecoder::setOnDecode(Decoder::onDecode cb) {
@@ -56,5 +57,28 @@ void PSDecoder::setOnStream(Decoder::onStream cb) {
_on_stream = std::move(cb);
}
const char *PSDecoder::onSearchPacketTail(const char *data, size_t len) {
try {
auto ret = ps_demuxer_input(static_cast<struct ps_demuxer_t *>(_ps_demuxer), reinterpret_cast<const uint8_t *>(data), len);
if (ret >= 0) {
//解析成功全部或部分
return data + ret;
}
//解析失败,丢弃所有数据
return data + len;
} catch (std::exception &ex) {
InfoL << "解析 ps 异常: bytes=" << len
<< ", exception=" << ex.what()
<< ", hex=" << hexdump(data, MIN(len, 32));
if (remainDataSize() > 256 * 1024) {
//缓存太多数据无法处理则上抛异常
throw;
}
return nullptr;
}
}
}//namespace mediakit
#endif//#if defined(ENABLE_RTPPROXY)