aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-13 03:49:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-25 21:12:44 +0200
commit35b15a0da849ac62bd2343f2e52d9bd9504375ce (patch)
tree312c1dd28f016ae7d8e47bba8cf6bc3c61c11f26
parentfa73f547a023ab4462416462eb3c389c77c8ee94 (diff)
downloadffmpeg-35b15a0da849ac62bd2343f2e52d9bd9504375ce.tar.gz
jpegls: increase run_index to 4
Fixes part of CID717913 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 8dc89944270aa223a960218e62e88164f8eda359) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/jpegls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpegls.h b/libavcodec/jpegls.h
index 2c21f774e8..3304032c2a 100644
--- a/libavcodec/jpegls.h
+++ b/libavcodec/jpegls.h
@@ -40,7 +40,7 @@ typedef struct JLSState{
int A[367], B[367], C[365], N[367];
int limit, reset, bpp, qbpp, maxval, range;
int near, twonear;
- int run_index[3];
+ int run_index[4];
}JLSState;
extern const uint8_t ff_log2_run[32];