From c4d88311cd90cfe5ec676413963140fa9ef41f41 Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sun, 1 Jun 2014 20:11:30 +0200
Subject: [PATCH] avcodec/dpx_parser: fix off by 1 error

Found-by: carl
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 libavcodec/dpx_parser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/dpx_parser.c b/libavcodec/dpx_parser.c
index db6ebf7ddf7..dd2a335c67c 100644
--- a/libavcodec/dpx_parser.c
+++ b/libavcodec/dpx_parser.c
@@ -89,7 +89,7 @@ static int dpx_parse(AVCodecParserContext *s, AVCodecContext *avctx,
         } else if (d->index > 17) {
             if (d->pc.state == MKBETAG('S','D','P','X') ||
                 d->pc.state == MKTAG('S','D','P','X')) {
-                next = i - 4;
+                next = i - 3;
                 break;
             }
         }
-- 
GitLab