mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
fix some crashes on negative nalsize.
Originally committed as revision 5022 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
214c5f26c9
commit
8b03135958
@ -7507,6 +7507,15 @@ static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){
|
||||
nalsize = 0;
|
||||
for(i = 0; i < h->nal_length_size; i++)
|
||||
nalsize = (nalsize << 8) | buf[buf_index++];
|
||||
if(nalsize <= 1){
|
||||
if(nalsize == 1){
|
||||
buf_index++;
|
||||
continue;
|
||||
}else{
|
||||
av_log(h->s.avctx, AV_LOG_ERROR, "AVC: nal size %d\n", nalsize);
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// start code prefix search
|
||||
for(; buf_index + 3 < buf_size; buf_index++){
|
||||
|
Loading…
Reference in New Issue
Block a user