Commit 20f5a179 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '44dc138e'

* commit '44dc138e':
  rtpdec_mpeg4: reassemble fragmented AAC frames

Conflicts:
	libavformat/rtpdec_mpeg4.c

See: fee2cc39Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents abf357a9 44dc138e
......@@ -218,9 +218,9 @@ static int aac_parse_packet(AVFormatContext *ctx, PayloadContext *data,
data->timestamp = *timestamp;
}
if (data->timestamp != *timestamp
|| data->au_headers[0].size != data->buf_size
|| data->buf_pos + len > MAX_AAC_HBR_FRAME_SIZE) {
if (data->timestamp != *timestamp ||
data->au_headers[0].size != data->buf_size ||
data->buf_pos + len > MAX_AAC_HBR_FRAME_SIZE) {
data->buf_pos = 0;
data->buf_size = 0;
av_log(ctx, AV_LOG_ERROR, "Invalid packet received\n");
......
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