From f0d48ac41f7ae9fdc024f9c2c9d592fade85c00c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 12 Jan 2019 22:29:27 +0100 Subject: [PATCH] avcodec/prosumer: Reduce lut size Signed-off-by: Michael Niedermayer --- libavcodec/prosumer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;