]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/parser.c
avdevice/decklink_dec: fix build with older SDK
[ffmpeg] / libavcodec / parser.c
index 0a994a3f30be699d7dfa6e6756f701caeaeb839c..a63f532c48427f3510c5ea2cc7c563c6e5b99259 100644 (file)
@@ -245,6 +245,9 @@ int ff_combine_frame(ParseContext *pc, int next,
     for (; pc->overread > 0; pc->overread--)
         pc->buffer[pc->index++] = pc->buffer[pc->overread_index++];
 
+    if (next > *buf_size)
+        return AVERROR(EINVAL);
+
     /* flush remaining if EOF */
     if (!*buf_size && next == END_NOT_FOUND)
         next = 0;
@@ -292,6 +295,10 @@ int ff_combine_frame(ParseContext *pc, int next,
         *buf      = pc->buffer;
     }
 
+    if (next < -8) {
+        pc->overread += -8 - next;
+        next = -8;
+    }
     /* store overread bytes */
     for (; next < 0; next++) {
         pc->state   = pc->state   << 8 | pc->buffer[pc->last_index + next];