ZLMediaKit/src/Rtp/RtpDecoder.cpp

61 lines
2.0 KiB
C++
Raw Normal View History

2019-12-05 19:20:12 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2019-12-06 11:54:10 +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.
2019-12-06 11:54:10 +08:00
*/
2019-12-05 19:20:12 +08:00
2019-12-06 11:54:10 +08:00
#if defined(ENABLE_RTPPROXY)
2019-12-05 19:20:12 +08:00
#include "Util/logger.h"
#include "RtpDecoder.h"
2019-12-06 11:54:10 +08:00
#include "rtp-payload.h"
2019-12-05 19:20:12 +08:00
using namespace toolkit;
2019-12-06 11:54:10 +08:00
namespace mediakit{
2019-12-05 19:20:12 +08:00
RtpDecoder::RtpDecoder() {
_buffer = std::make_shared<BufferRaw>();
}
RtpDecoder::~RtpDecoder() {
if(_rtp_decoder){
rtp_payload_decode_destroy(_rtp_decoder);
_rtp_decoder = nullptr;
}
}
2020-03-08 21:19:20 +08:00
void RtpDecoder::decodeRtp(const void *data, int bytes) {
2019-12-05 19:20:12 +08:00
if(!_rtp_decoder){
static rtp_payload_t s_func= {
[](void* param, int bytes){
RtpDecoder *obj = (RtpDecoder *)param;
obj->_buffer->setCapacity(bytes);
return (void *)obj->_buffer->data();
},
[](void* param, void* packet){
//do nothing
},
[](void* param, const void *packet, int bytes, uint32_t timestamp, int flags){
RtpDecoder *obj = (RtpDecoder *)param;
2020-03-06 13:00:06 +08:00
obj->onRtpDecode((uint8_t *)packet, bytes, timestamp, flags);
2019-12-05 19:20:12 +08:00
}
};
uint8_t rtp_type = 0x7F & ((uint8_t *) data)[1];
InfoL << "rtp type:" << (int) rtp_type;
2020-03-08 22:10:37 +08:00
_rtp_decoder = rtp_payload_decode_create(rtp_type, "MP2P", &s_func, this);
2019-12-05 19:20:12 +08:00
if (!_rtp_decoder) {
WarnL << "unsupported rtp type:" << (int) rtp_type << ",size:" << bytes << ",hexdump" << hexdump(data, bytes > 16 ? 16 : bytes);
}
}
2019-12-05 19:20:12 +08:00
if(_rtp_decoder){
rtp_payload_decode_input(_rtp_decoder,data,bytes);
}
}
2019-12-06 11:54:10 +08:00
}//namespace mediakit
#endif//defined(ENABLE_RTPPROXY)