Browse Source

Get rid of the non sensical idea of using the current picture for missing

reference pictures.

Originally committed as revision 18473 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 17 years ago
parent
commit
ead793358a
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavcodec/h264.c

+ 4
- 1
libavcodec/h264.c View File

@@ -2950,7 +2950,10 @@ static int decode_ref_pic_list_reordering(H264Context *h){
for(index= 0; index < h->ref_count[list]; index++){
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
if(h->default_ref_list[list][0].data[0])
h->ref_list[list][index]= h->default_ref_list[list][0];
else
return -1;
}
}
}


Loading…
Cancel
Save