[FFmpeg-cvslog] h264_refs: fix typo in refs fallback check

Michael Niedermayer git at videolan.org
Sun Mar 17 14:28:52 CET 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Mar 17 14:15:15 2013 +0100| [fa7031ad37526bc9916e87dda25547ebbb6f4a3b] | committer: Michael Niedermayer

h264_refs: fix typo in refs fallback check

Fixes regression since 01a0283
Fixes Ticket2371

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fa7031ad37526bc9916e87dda25547ebbb6f4a3b
---

 libavcodec/h264_refs.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c
index e720c07..53a08be 100644
--- a/libavcodec/h264_refs.c
+++ b/libavcodec/h264_refs.c
@@ -312,7 +312,7 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h)
                 for (i = 0; i < FF_ARRAY_ELEMS(h->last_pocs); i++)
                     h->last_pocs[i] = INT_MIN;
                 if (h->default_ref_list[list][0].f.data[0]
-                    && !(!FIELD_PICTURE && (h->default_ref_list[list][index].reference&3) != 3))
+                    && !(!FIELD_PICTURE && (h->default_ref_list[list][0].reference&3) != 3))
                     COPY_PICTURE(&h->ref_list[list][index], &h->default_ref_list[list][0]);
                 else
                     return -1;



More information about the ffmpeg-cvslog mailing list