Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-13 05:49:11 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-10-13 05:54:04 +0400
commit8dc89944270aa223a960218e62e88164f8eda359 (patch)
tree39b1034b7382cfd94c6ac54aabf9ad129f9fdba0 /libavcodec/jpegls.h
parent4acfe3d193c741126bd7f5c1a32a911e00595ecc (diff)
jpegls: increase run_index to 4
Fixes part of CID717913 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/jpegls.h')
-rw-r--r--libavcodec/jpegls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpegls.h b/libavcodec/jpegls.h
index 88e65c906f..0a6ead3d8f 100644
--- a/libavcodec/jpegls.h
+++ b/libavcodec/jpegls.h
@@ -41,7 +41,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];