mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-09 16:19:35 +00:00
Print an error if a reference picture is missing.
Originally committed as revision 14403 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6edac8e104
commit
79b5c77692
@ -3007,8 +3007,10 @@ static int decode_ref_pic_list_reordering(H264Context *h){
|
||||
}
|
||||
for(list=0; list<h->list_count; list++){
|
||||
for(index= 0; index < h->ref_count[list]; index++){
|
||||
if(!h->ref_list[list][index].data[0])
|
||||
h->ref_list[list][index]= s->current_picture;
|
||||
if(!h->ref_list[list][index].data[0]){
|
||||
av_log(h->s.avctx, AV_LOG_ERROR, "Missing reference picture\n");
|
||||
h->ref_list[list][index]= s->current_picture; //FIXME this is not a sensible solution
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user