Commit d898482a authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'bfeb83a8'

* commit 'bfeb83a8':
  rtpdec_hevc: Drop extra sanity check for size of input packet
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents b3a56e60 bfeb83a8
......@@ -249,14 +249,6 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
case 39:
/* single NAL unit packet */
default:
/* sanity check for size of input packet: 1 byte payload at least */
if (len < 1) {
av_log(ctx, AV_LOG_ERROR,
"Too short RTP/HEVC packet, got %d bytes of NAL unit type %d\n",
len, nal_type);
return AVERROR_INVALIDDATA;
}
/* create A/V packet */
if ((res = av_new_packet(pkt, sizeof(start_sequence) + len)) < 0)
return res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment