From b4987f72197e0c62cf2633bf835a9c32d2a445ae Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 18 Feb 2014 11:30:55 +0100 Subject: idct: Convert IDCT permutation #defines to an enum Also rename the enum values to be consistent with other DCT permutations. --- libavcodec/ppc/idctdsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/ppc') diff --git a/libavcodec/ppc/idctdsp.c b/libavcodec/ppc/idctdsp.c index 8a1d2903d8..7dd3ab2c99 100644 --- a/libavcodec/ppc/idctdsp.c +++ b/libavcodec/ppc/idctdsp.c @@ -237,7 +237,7 @@ av_cold void ff_idctdsp_init_ppc(IDCTDSPContext *c, AVCodecContext *avctx, (avctx->idct_algo == FF_IDCT_ALTIVEC)) { c->idct_add = idct_add_altivec; c->idct_put = idct_put_altivec; - c->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM; + c->perm_type = FF_IDCT_PERM_TRANSPOSE; } } } -- cgit v1.2.3