mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
libpostproc: fix leak of 2kb
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ca9eb9305a
commit
f9d8658d67
@ -381,11 +381,10 @@ static inline void doHorizLowPass_C(uint8_t dst[], int stride, const PPContext *
|
||||
static inline void horizX1Filter(uint8_t *src, int stride, int QP)
|
||||
{
|
||||
int y;
|
||||
static uint64_t *lut= NULL;
|
||||
if(lut==NULL)
|
||||
static uint64_t lut[256];
|
||||
if(!lut[255])
|
||||
{
|
||||
int i;
|
||||
lut = av_malloc(256*8);
|
||||
for(i=0; i<256; i++)
|
||||
{
|
||||
int v= i < 128 ? 2*i : 2*(i-256);
|
||||
|
Loading…
Reference in New Issue
Block a user