mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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
This commit is contained in:
parent
2df19ea53a
commit
91c58c944f
@ -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…
Reference in New Issue
Block a user