diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-01 17:33:48 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-01 17:33:48 +0000 |
commit | 91c58c944fb7dcd0ecc7b8cf9ffd879bc7b1aa06 (patch) | |
tree | 4d0af72f0167ef7ed2e16aac13214617ca64adab /libavcodec | |
parent | 2df19ea53ad77de79ab16cea99cd98359c2e300a (diff) | |
download | ffmpeg-91c58c944fb7dcd0ecc7b8cf9ffd879bc7b1aa06.tar.gz |
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
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 2047d5fc61..9470177d3b 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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++){ |