summaryrefslogtreecommitdiffstats
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-14 03:12:29 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-14 03:12:29 +0000
commitbe6ed6fff4cace79a2c17094ad716bc0944a4274 (patch)
tree7f152718973ecd354ebd9cde2bfc16ad9ed37c23 /libavcodec/dct-test.c
parent8233b75041c4fca97dd71087ba888576be86a0f9 (diff)
downloadffmpeg-streaming-be6ed6fff4cace79a2c17094ad716bc0944a4274.zip
ffmpeg-streaming-be6ed6fff4cace79a2c17094ad716bc0944a4274.tar.gz
move some CFLAGS settings away from config.* writing section
Originally committed as revision 7043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 2c16f47..e7c91ca 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -69,7 +69,7 @@ static const unsigned short aanscales[64] = {
4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247
};
-uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
+uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP];
int64_t gettime(void)
{
@@ -473,10 +473,10 @@ int main(int argc, char **argv)
init_fdct();
idct_mmx_init();
- for(i=0;i<256;i++) cropTbl[i + MAX_NEG_CROP] = i;
+ for(i=0;i<256;i++) ff_cropTbl[i + MAX_NEG_CROP] = i;
for(i=0;i<MAX_NEG_CROP;i++) {
- cropTbl[i] = 0;
- cropTbl[i + MAX_NEG_CROP + 256] = 255;
+ ff_cropTbl[i] = 0;
+ ff_cropTbl[i + MAX_NEG_CROP + 256] = 255;
}
for(;;) {
OpenPOWER on IntegriCloud