Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-09-21 20:44:41 +0400
committerDiego Biurrun <diego@biurrun.de>2011-12-08 04:01:00 +0400
commit4dccfff9dd01d6c45731cda21fc6ea0a649d6581 (patch)
treed0b4cd35ebaa42e8cf048b6196ae44a651877e48 /libavcodec/dct-test.c
parent9a5d6c23c5cc25b887f996d55f96dfbacf760e88 (diff)
tests/examples: Mark some variables only used within their files as static.
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index d30454990a..1665682698 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -151,7 +151,7 @@ static const struct algo idct_tab[] = {
#define AANSCALE_BITS 12
-uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
+static uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
static int64_t gettime(void)
{