diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-27 11:33:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-27 11:33:26 +0000 |
commit | 79cb09b2f76c86dc988a5eba33b0cf8bd08a9b0e (patch) | |
tree | 1d4069cd7b3a696e41f88689fb170e431c2430aa /libavcodec/dsputil.c | |
parent | d89eae6f1a143b5af89f6907cc8abea4d1dee8e4 (diff) | |
download | ffmpeg-79cb09b2f76c86dc988a5eba33b0cf8bd08a9b0e.tar.gz |
consistency cosmetics: Rename POWERPC identifiers to PPC.
Originally committed as revision 16359 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 78942775e4..76f5dbbf4d 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -169,7 +169,7 @@ void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_s int j; j = src_scantable[i]; st->permutated[i] = permutation[j]; -#ifdef ARCH_POWERPC +#ifdef ARCH_PPC st->inverse[j] = i; #endif } @@ -4628,7 +4628,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) if (ENABLE_MLIB) dsputil_init_mlib (c, avctx); if (ENABLE_VIS) dsputil_init_vis (c, avctx); if (ENABLE_ALPHA) dsputil_init_alpha (c, avctx); - if (ENABLE_POWERPC) dsputil_init_ppc (c, avctx); + if (ENABLE_PPC) dsputil_init_ppc (c, avctx); if (ENABLE_MMI) dsputil_init_mmi (c, avctx); if (ENABLE_SH4) dsputil_init_sh4 (c, avctx); if (ENABLE_BFIN) dsputil_init_bfin (c, avctx); |