From 2df7f7714a12a59d31058aba15fb1e348e36b0ab Mon Sep 17 00:00:00 2001
From: Luca Barbato <lu_zero@gentoo.org>
Date: Thu, 10 Oct 2013 10:26:31 +0200
Subject: [PATCH] prores: Error out only on surely incomplete ac_coeffs

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

diff --git a/libavcodec/proresdec.c b/libavcodec/proresdec.c
index db998fadf4a..c65d7298f2c 100644
--- a/libavcodec/proresdec.c
+++ b/libavcodec/proresdec.c
@@ -390,7 +390,7 @@ static inline int decode_ac_coeffs(GetBitContext *gb, int16_t *out,
 
         bits_left = get_bits_left(gb);
         if (bits_left <= 0 || (bits_left <= 8 && !show_bits(gb, bits_left)))
-            return AVERROR_INVALIDDATA;
+            return 0;
 
         run = decode_vlc_codeword(gb, ff_prores_ac_codebook[run_cb_index]);
 
-- 
GitLab