mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Merge commit '44dc138ed29c4dfbaf57ebc774da4c75ef113ca4'
* commit '44dc138ed29c4dfbaf57ebc774da4c75ef113ca4': rtpdec_mpeg4: reassemble fragmented AAC frames Conflicts: libavformat/rtpdec_mpeg4.c See: fee2cc39becb1930461dff267389717337804a4a Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
20f5a17956
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user