[Ffmpeg-cvslog] r6105 - trunk/libavcodec/mpegaudiodec.c
michael
subversion
Sun Aug 27 09:19:12 CEST 2006
Author: michael
Date: Sun Aug 27 09:19:11 2006
New Revision: 6105
Modified:
trunk/libavcodec/mpegaudiodec.c
Log:
check the validity of the amount of the remaining bytes in the bitsteam before memcpy
Modified: trunk/libavcodec/mpegaudiodec.c
==============================================================================
--- trunk/libavcodec/mpegaudiodec.c (original)
+++ trunk/libavcodec/mpegaudiodec.c Sun Aug 27 09:19:11 2006
@@ -2522,7 +2522,10 @@
align_get_bits(&s->gb);
assert((get_bits_count(&s->gb) & 7) == 0);
s->last_buf_size= (s->gb.size_in_bits - get_bits_count(&s->gb))>>3;
- memcpy(s->last_buf, s->gb.buffer + (get_bits_count(&s->gb)>>3), s->last_buf_size);
+ if(s->last_buf_size <0 || s->last_buf_size > BACKSTEP_SIZE || nb_frames<0)
+ s->last_buf_size= FFMIN(BACKSTEP_SIZE, buf_size - HEADER_SIZE);
+ assert(s->last_buf_size <= buf_size - HEADER_SIZE);
+ memcpy(s->last_buf, s->gb.buffer + buf_size - HEADER_SIZE - s->last_buf_size, s->last_buf_size);
break;
}
More information about the ffmpeg-cvslog
mailing list