Module: libav
Branch: release/9
Commit: 5dcc17992430f4ef910b06956b4d19af98880670

Author:    Kostya Shishkov <[email protected]>
Committer: Reinhard Tartler <[email protected]>
Date:      Mon Nov 25 14:04:41 2013 +0100

vc1: Reset numref if fieldmode is not set

There are samples in the wild with B-frames and P-frames with different
interlace mode.

CC: [email protected]
Reported-by: Jean-Baptiste Kempf <[email protected]>
Signed-off-by: Luca Barbato <[email protected]>
(cherry picked from commit de44dfc7c0ec02bda7d846ef713145c890bfae3f)

Signed-off-by: Reinhard Tartler <[email protected]>

---

 libavcodec/vc1.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index a8dd38a..21449bd 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -992,6 +992,8 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, 
GetBitContext* gb)
                 v->reffield          = get_bits1(gb);
                 v->ref_field_type[0] = v->reffield ^ !v->cur_field_type;
             }
+        } else {
+            v->numref = 0;
         }
         if (v->extended_mv)
             v->mvrange = get_unary(gb, 0, 3);

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to