mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/tests/mjpegenc_huffman: Remove static in main() table
Avoids false positives when greping for non constant statics Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
daccbe81a2
commit
d23af72a0c
|
@ -117,7 +117,7 @@ int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i, ret = 0;
|
int i, ret = 0;
|
||||||
// Probabilities of symbols 0..4
|
// Probabilities of symbols 0..4
|
||||||
static PTable val_counts[] = {
|
PTable val_counts[] = {
|
||||||
{.value = 0, .prob = 1},
|
{.value = 0, .prob = 1},
|
||||||
{.value = 1, .prob = 2},
|
{.value = 1, .prob = 2},
|
||||||
{.value = 2, .prob = 5},
|
{.value = 2, .prob = 5},
|
||||||
|
|
Loading…
Reference in New Issue