Browse Source

fill_mbaff_ref_list is missing a return statement, its return value

is ignored, and it can't possibly fail, so make it void

Originally committed as revision 5566 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 19 years ago
parent
commit
91c58c944f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.c

+ 1
- 1
libavcodec/h264.c View File

@@ -4099,7 +4099,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
return 0;
}

static int fill_mbaff_ref_list(H264Context *h){
static void fill_mbaff_ref_list(H264Context *h){
int list, i, j;
for(list=0; list<2; list++){
for(i=0; i<h->ref_count[list]; i++){


Loading…
Cancel
Save