diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-04-14 20:59:20 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-12 20:27:52 +0200 |
commit | b93c0aed79f7f942e0dec26e53c147f297ce2ff6 (patch) | |
tree | 5152c4b0094e986eebe7cafa5bfa409fa44cb08e | |
parent | 77a1e2c5f8f8250dfacff24b993eb473260ed13e (diff) | |
download | ffmpeg-b93c0aed79f7f942e0dec26e53c147f297ce2ff6.tar.gz |
h264: drop an outdated comment
-rw-r--r-- | libavcodec/h264_refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c index 427930cfb1..a925b44327 100644 --- a/libavcodec/h264_refs.c +++ b/libavcodec/h264_refs.c @@ -355,7 +355,7 @@ int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContex void ff_h264_fill_mbaff_ref_list(H264SliceContext *sl) { int list, i, j; - for (list = 0; list < sl->list_count; list++) { //FIXME try list_count + for (list = 0; list < sl->list_count; list++) { for (i = 0; i < sl->ref_count[list]; i++) { H264Ref *frame = &sl->ref_list[list][i]; H264Ref *field = &sl->ref_list[list][16 + 2 * i]; |