diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-18 11:30:55 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-18 07:51:03 -0700 |
commit | b4987f72197e0c62cf2633bf835a9c32d2a445ae (patch) | |
tree | 4e8cce0604eeea25ac63f7fe345b572bac6f6ac8 /libavcodec/cavsdsp.c | |
parent | c0de9159a7ba5707aa0a5c2bc73ae78b7b87ec46 (diff) | |
download | ffmpeg-b4987f72197e0c62cf2633bf835a9c32d2a445ae.tar.gz |
idct: Convert IDCT permutation #defines to an enum
Also rename the enum values to be consistent with other DCT permutations.
Diffstat (limited to 'libavcodec/cavsdsp.c')
-rw-r--r-- | libavcodec/cavsdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavsdsp.c b/libavcodec/cavsdsp.c index 958e3c5ef2..b0f94de65b 100644 --- a/libavcodec/cavsdsp.c +++ b/libavcodec/cavsdsp.c @@ -561,7 +561,7 @@ av_cold void ff_cavsdsp_init(CAVSDSPContext* c, AVCodecContext *avctx) { c->cavs_filter_cv = cavs_filter_cv_c; c->cavs_filter_ch = cavs_filter_ch_c; c->cavs_idct8_add = cavs_idct8_add_c; - c->idct_perm = FF_NO_IDCT_PERM; + c->idct_perm = FF_IDCT_PERM_NONE; if (ARCH_X86) ff_cavsdsp_init_x86(c, avctx); |