]> git.sesse.net Git - ffmpeg/commitdiff
indeo: check for reference when inheriting mvs
authorLuca Barbato <lu_zero@gentoo.org>
Sun, 30 Jun 2013 08:40:37 +0000 (10:40 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Mon, 1 Jul 2013 02:20:58 +0000 (04:20 +0200)
The same is done already for qdelta.

Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
libavcodec/ivi_common.c

index 39e9f929538aac3d9c201224a36ba2834320ac51..4eee19be693ad4228cc3398d8109961d7b7f9d0d 100644 (file)
@@ -603,7 +603,7 @@ static int ivi_process_empty_tile(AVCodecContext *avctx, IVIBandDesc *band,
             if (band->inherit_qdelta && ref_mb)
                 mb->q_delta = ref_mb->q_delta;
 
-            if (band->inherit_mv) {
+            if (band->inherit_mv && ref_mb) {
                 /* motion vector inheritance */
                 if (mv_scale) {
                     mb->mv_x = ivi_scale_mv(ref_mb->mv_x, mv_scale);