summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-01 17:33:48 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-01 17:33:48 +0000
commit91c58c944fb7dcd0ecc7b8cf9ffd879bc7b1aa06 (patch)
tree4d0af72f0167ef7ed2e16aac13214617ca64adab /libavcodec/h264.c
parent2df19ea53ad77de79ab16cea99cd98359c2e300a (diff)
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/h264.c')
-rw-r--r--libavcodec/h264.c2
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++){