Commit 8839cbf9 authored by Clément Bœsch's avatar Clément Bœsch

Revert "avcodec/svq1: zero initialize entries array"

This reverts commit aed84ee4.

It is a false positive from Valgrind with recent GCC and
-funswitch-loops (present in -O3).
parent d36a3f5a
......@@ -160,7 +160,7 @@ static int svq1_decode_block_intra(GetBitContext *bitbuf, uint8_t *pixels,
uint8_t *list[63];
uint32_t *dst;
const uint32_t *codebook;
int entries[6] = { 0 };
int entries[6];
int i, j, m, n;
int stages;
unsigned mean;
......@@ -227,7 +227,7 @@ static int svq1_decode_block_non_intra(GetBitContext *bitbuf, uint8_t *pixels,
uint8_t *list[63];
uint32_t *dst;
const uint32_t *codebook;
int entries[6] = { 0 };
int entries[6];
int i, j, m, n;
int stages;
unsigned mean;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment