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 <michael@niedermayer.cc>2019-01-13 00:29:27 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2019-01-20 23:42:20 +0300
commitf0d48ac41f7ae9fdc024f9c2c9d592fade85c00c (patch)
tree13abda2c5ba8757a7329a648f4fa024bd6565cd8 /libavcodec/prosumer.c
parentd3b76c9993238508ac7e727088c2b27c46834848 (diff)
avcodec/prosumer: Reduce lut size
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/prosumer.c')
-rw-r--r--libavcodec/prosumer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/prosumer.c b/libavcodec/prosumer.c
index 3fa9986a38..9143bb1bf4 100644
--- a/libavcodec/prosumer.c
+++ b/libavcodec/prosumer.c
@@ -38,7 +38,7 @@ typedef struct ProSumerContext {
unsigned stride;
unsigned size;
- uint32_t lut[0x10000];
+ uint32_t lut[0x2000];
uint8_t *initial_line;
uint8_t *decbuffer;
} ProSumerContext;