aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-28 22:24:05 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-28 23:36:54 +0200
commitceede3a802478b6cf0c1cd7d54b76b4af8d00d56 (patch)
tree942c5d8d45111a73af1c901c244aa5b20a137147
parentbe9183de2ec54aab2f3e613b53ead369b6cf22fe (diff)
downloadffmpeg-ceede3a802478b6cf0c1cd7d54b76b4af8d00d56.tar.gz
h264: fix FIXME and use list_count in ff_h264_fill_mbaff_ref_list()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 237d31e0b98b95eef687e612177ca3ea24b709fc)
-rw-r--r--libavcodec/h264_refs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c
index 83a5564e4c..063ac97955 100644
--- a/libavcodec/h264_refs.c
+++ b/libavcodec/h264_refs.c
@@ -301,7 +301,7 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h){
void ff_h264_fill_mbaff_ref_list(H264Context *h){
int list, i, j;
- for(list=0; list<2; list++){ //FIXME try list_count
+ for(list=0; list<h->list_count; list++){
for(i=0; i<h->ref_count[list]; i++){
Picture *frame = &h->ref_list[list][i];
Picture *field = &h->ref_list[list][16+2*i];