Merge commit '44dc138ed29c4dfbaf57ebc774da4c75ef113ca4'

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

Conflicts:
	libavformat/rtpdec_mpeg4.c

See: fee2cc39be
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-22 01:58:55 +01:00
commit 20f5a17956

View File

@ -218,9 +218,9 @@ static int aac_parse_packet(AVFormatContext *ctx, PayloadContext *data,
data->timestamp = *timestamp; data->timestamp = *timestamp;
} }
if (data->timestamp != *timestamp if (data->timestamp != *timestamp ||
|| data->au_headers[0].size != data->buf_size data->au_headers[0].size != data->buf_size ||
|| data->buf_pos + len > MAX_AAC_HBR_FRAME_SIZE) { data->buf_pos + len > MAX_AAC_HBR_FRAME_SIZE) {
data->buf_pos = 0; data->buf_pos = 0;
data->buf_size = 0; data->buf_size = 0;
av_log(ctx, AV_LOG_ERROR, "Invalid packet received\n"); av_log(ctx, AV_LOG_ERROR, "Invalid packet received\n");