Commit d23af72a authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/tests/mjpegenc_huffman: Remove static in main() table

Avoids false positives when greping for non constant statics
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent daccbe81
...@@ -117,7 +117,7 @@ int main(int argc, char **argv) ...@@ -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},
......
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