diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:26:15 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:42 +0200 |
commit | 873c89e2a6825150edf036fd9993d53f25a0c6b8 (patch) | |
tree | 7e161cabe27fbb42c1ff363ff1ffc831c7dc1e17 /libavcodec/dsputil.c | |
parent | 3e2efacdd8a3ffb5d1c9004f112492b946284f9b (diff) | |
download | ffmpeg-873c89e2a6825150edf036fd9993d53f25a0c6b8.tar.gz |
dsputil: Add ff_ prefix to inv_zigzag_direct16
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 3a84cce750..f9d933fe2f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -82,7 +82,7 @@ const uint8_t ff_zigzag248_direct[64] = { }; /* not permutated inverse zigzag_direct + 1 for MMX quantizer */ -DECLARE_ALIGNED(16, uint16_t, inv_zigzag_direct16)[64]; +DECLARE_ALIGNED(16, uint16_t, ff_inv_zigzag_direct16)[64]; const uint8_t ff_alternate_horizontal_scan[64] = { 0, 1, 2, 3, 8, 9, 16, 17, @@ -2761,7 +2761,7 @@ av_cold void ff_dsputil_static_init(void) ff_squareTbl[i] = (i - 256) * (i - 256); } - for(i=0; i<64; i++) inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1; + for(i=0; i<64; i++) ff_inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1; } int ff_check_alignment(void){ |