2021-08-02 15:54:51 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2021-08-02 15:54:51 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2021-08-02 15:54:51 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2021-08-02 15:54:51 +08:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "mk_h264_splitter.h"
|
|
|
|
|
#include "Http/HttpRequestSplitter.h"
|
2023-12-09 16:23:51 +08:00
|
|
|
|
#include "Extension/Factory.h"
|
2021-08-02 15:54:51 +08:00
|
|
|
|
|
|
|
|
|
using namespace mediakit;
|
|
|
|
|
|
|
|
|
|
class H264Splitter : public HttpRequestSplitter {
|
|
|
|
|
public:
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using onH264 = std::function<void(const char *data, size_t len)>;
|
2023-02-11 11:43:41 +08:00
|
|
|
|
H264Splitter(bool h265 = false) { _h265 = h265; }
|
2021-08-02 15:54:51 +08:00
|
|
|
|
~H264Splitter() override;
|
|
|
|
|
void setOnSplitted(onH264 cb);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
ssize_t onRecvHeader(const char *data, size_t len) override;
|
|
|
|
|
const char *onSearchPacketTail(const char *data, size_t len) override;
|
|
|
|
|
|
|
|
|
|
private:
|
2023-02-11 11:43:41 +08:00
|
|
|
|
bool _h265 = false;
|
2024-05-09 18:06:19 +08:00
|
|
|
|
bool _have_decode_frame = false;
|
2021-08-02 15:54:51 +08:00
|
|
|
|
onH264 _cb;
|
2024-05-09 18:06:19 +08:00
|
|
|
|
toolkit::BufferLikeString _buffer;
|
2021-08-02 15:54:51 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void H264Splitter::setOnSplitted(H264Splitter::onH264 cb) {
|
|
|
|
|
_cb = std::move(cb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
H264Splitter::~H264Splitter() {
|
|
|
|
|
if (remainDataSize()) {
|
|
|
|
|
_cb(remainData(), remainDataSize());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t H264Splitter::onRecvHeader(const char *data, size_t len) {
|
2024-05-09 18:06:19 +08:00
|
|
|
|
auto frame = Factory::getFrameFromPtr(_h265 ? CodecH265 : CodecH264, (char *)data, len, 0, 0);
|
|
|
|
|
if (_have_decode_frame && (frame->decodeAble() || frame->configFrame())) {
|
2024-09-19 14:53:50 +08:00
|
|
|
|
// 缓存中存在可解码帧,且下一帧是可解码帧或者配置帧,那么flush缓存 [AUTO-TRANSLATED:2c52093b]
|
|
|
|
|
// Flush the cache if there are decodable frames in the cache and the next frame is a decodable frame or a configuration frame.
|
2024-05-09 18:06:19 +08:00
|
|
|
|
_cb(_buffer.data(), _buffer.size());
|
|
|
|
|
_buffer.assign(data, len);
|
|
|
|
|
_have_decode_frame = frame->decodeAble();
|
|
|
|
|
} else {
|
2024-09-19 14:53:50 +08:00
|
|
|
|
// 还需要缓存 [AUTO-TRANSLATED:a4dc19cb]
|
|
|
|
|
// Still need to cache
|
2024-05-09 18:06:19 +08:00
|
|
|
|
_buffer.append(data, len);
|
|
|
|
|
_have_decode_frame = _have_decode_frame || frame->decodeAble();
|
|
|
|
|
}
|
2021-08-02 15:54:51 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-09 18:06:19 +08:00
|
|
|
|
const char *H264Splitter::onSearchPacketTail(const char *data, size_t len) {
|
2021-08-02 15:54:51 +08:00
|
|
|
|
for (size_t i = 2; len > 2 && i < len - 2; ++i) {
|
2024-09-19 14:53:50 +08:00
|
|
|
|
// 判断0x00 00 01 [AUTO-TRANSLATED:afa3d4c2]
|
|
|
|
|
// Determine if it is 0x00 00 01
|
2021-08-02 15:54:51 +08:00
|
|
|
|
if (data[i] == 0 && data[i + 1] == 0 && data[i + 2] == 1) {
|
|
|
|
|
if (i > 0 && data[i - 1] == 0) {
|
2024-09-19 14:53:50 +08:00
|
|
|
|
// 找到0x00 00 00 01 [AUTO-TRANSLATED:96a10021]
|
|
|
|
|
// Find 0x00 00 00 01
|
2021-08-02 15:54:51 +08:00
|
|
|
|
return data + i - 1;
|
|
|
|
|
}
|
|
|
|
|
return data + i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2023-02-11 11:43:41 +08:00
|
|
|
|
API_EXPORT mk_h264_splitter API_CALL mk_h264_splitter_create(on_mk_h264_splitter_frame cb, void *user_data, int is_h265) {
|
2023-02-11 15:14:18 +08:00
|
|
|
|
return mk_h264_splitter_create2(cb, user_data, nullptr, is_h265);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT mk_h264_splitter API_CALL mk_h264_splitter_create2(on_mk_h264_splitter_frame cb, void *user_data, on_user_data_free user_data_free, int is_h265) {
|
2021-08-02 15:54:51 +08:00
|
|
|
|
assert(cb);
|
2023-02-11 15:14:18 +08:00
|
|
|
|
auto ret = new H264Splitter(is_h265);
|
|
|
|
|
std::shared_ptr<void> ptr(user_data, user_data_free ? user_data_free : [](void *) {});
|
|
|
|
|
ret->setOnSplitted([cb, ptr, ret](const char *data, size_t len) {
|
|
|
|
|
cb(ptr.get(), reinterpret_cast<mk_h264_splitter>(ret), data, len);
|
2021-08-02 15:54:51 +08:00
|
|
|
|
});
|
2023-02-11 15:14:18 +08:00
|
|
|
|
return reinterpret_cast<mk_h264_splitter>(ret);
|
2021-08-02 15:54:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT void API_CALL mk_h264_splitter_release(mk_h264_splitter ctx){
|
|
|
|
|
assert(ctx);
|
|
|
|
|
auto ptr = reinterpret_cast<H264Splitter *>(ctx);
|
|
|
|
|
delete ptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT void API_CALL mk_h264_splitter_input_data(mk_h264_splitter ctx, const char *data, int size) {
|
|
|
|
|
assert(ctx && data && size);
|
|
|
|
|
auto ptr = reinterpret_cast<H264Splitter *>(ctx);
|
|
|
|
|
ptr->input(data, size);
|
|
|
|
|
}
|