防止内存越界

This commit is contained in:
ziyue 2021-10-27 13:26:53 +08:00
parent 0a3bcdab15
commit 350a0e3f81

View File

@ -132,8 +132,8 @@ bool AACRtpDecoder::inputRtp(const RtpPacket::Ptr &rtp, bool key_pos) {
}
void AACRtpDecoder::flushData() {
auto ptr = reinterpret_cast<const uint8_t *>(_frame->_buffer.data());
if ((ptr[0] == 0xFF && (ptr[1] & 0xF0) == 0xF0)) {
auto ptr = reinterpret_cast<const uint8_t *>(_frame->data());
if ((ptr[0] == 0xFF && (ptr[1] & 0xF0) == 0xF0) && _frame->size() > ADTS_HEADER_LEN) {
//adts头打入了rtp包不符合规范兼容EasyPusher的bug
_frame->_prefix_size = ADTS_HEADER_LEN;
} else {