diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 23:11:58 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-02 23:11:58 +0200 |
commit | f19a23bd4fb689aea800251cb261597b8d25e06f (patch) | |
tree | f358aaea8fb2fdbfb18f4d01fa8adaea4697d6dc /libavcodec/mjpeg.c | |
parent | b984c727f53c30527552503eac4fabb1fd0e6a09 (diff) | |
download | ffmpeg-f19a23bd4fb689aea800251cb261597b8d25e06f.tar.gz |
avcodec/mjpeg: make 2 outcommented tables static
Diffstat (limited to 'libavcodec/mjpeg.c')
-rw-r--r-- | libavcodec/mjpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c index a5b1a802c7..bdd7b191f5 100644 --- a/libavcodec/mjpeg.c +++ b/libavcodec/mjpeg.c @@ -38,7 +38,7 @@ * The spec says that the values given produce "good" quality, and * when divided by 2, "very good" quality. */ -const unsigned char std_luminance_quant_tbl[64] = { +static const unsigned char std_luminance_quant_tbl[64] = { 16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, 14, 13, 16, 24, 40, 57, 69, 56, @@ -48,7 +48,7 @@ const unsigned char std_luminance_quant_tbl[64] = { 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99 }; -const unsigned char std_chrominance_quant_tbl[64] = { +static const unsigned char std_chrominance_quant_tbl[64] = { 17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, 24, 26, 56, 99, 99, 99, 99, 99, |