Skip to content
Snippets Groups Projects
Commit d23af72a authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

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


Avoids false positives when greping for non constant statics

Signed-off-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent daccbe81
No related branches found
No related tags found
No related merge requests found
...@@ -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},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment