diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-18 21:55:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-18 22:01:17 +0200 |
commit | 42d326353c17085a98f0e81844f0c6320d70e8f3 (patch) | |
tree | b3ca4f4affde4d81b6e6f826828fdbaecb9d2a17 /libavcodec/idctdsp.h | |
parent | f6ed5df9c00c3fda2571ccc75e3055c215e4fc1a (diff) | |
parent | b4987f72197e0c62cf2633bf835a9c32d2a445ae (diff) | |
download | ffmpeg-42d326353c17085a98f0e81844f0c6320d70e8f3.tar.gz |
Merge commit 'b4987f72197e0c62cf2633bf835a9c32d2a445ae'
* commit 'b4987f72197e0c62cf2633bf835a9c32d2a445ae':
idct: Convert IDCT permutation #defines to an enum
Conflicts:
libavcodec/idctdsp.c
libavcodec/x86/cavsdsp.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/idctdsp.h')
-rw-r--r-- | libavcodec/idctdsp.h | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/libavcodec/idctdsp.h b/libavcodec/idctdsp.h index b1fa6e29cb..04510b16bb 100644 --- a/libavcodec/idctdsp.h +++ b/libavcodec/idctdsp.h @@ -32,12 +32,21 @@ typedef struct ScanTable { uint8_t raster_end[64]; } ScanTable; +enum idct_permutation_type { + FF_IDCT_PERM_NONE, + FF_IDCT_PERM_LIBMPEG2, + FF_IDCT_PERM_SIMPLE, + FF_IDCT_PERM_TRANSPOSE, + FF_IDCT_PERM_PARTTRANS, + FF_IDCT_PERM_SSE2, +}; + void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable); void ff_init_scantable_permutation(uint8_t *idct_permutation, - int idct_permutation_type); + enum idct_permutation_type perm_type); int ff_init_scantable_permutation_x86(uint8_t *idct_permutation, - int idct_permutation_type); + enum idct_permutation_type perm_type); typedef struct IDCTDSPContext { /* pixel ops : interface with DCT */ @@ -83,13 +92,7 @@ typedef struct IDCTDSPContext { * -> simple_idct_mmx -> ...) */ uint8_t idct_permutation[64]; - int idct_permutation_type; -#define FF_NO_IDCT_PERM 1 -#define FF_LIBMPEG2_IDCT_PERM 2 -#define FF_SIMPLE_IDCT_PERM 3 -#define FF_TRANSPOSE_IDCT_PERM 4 -#define FF_PARTTRANS_IDCT_PERM 5 -#define FF_SSE2_IDCT_PERM 6 + enum idct_permutation_type perm_type; } IDCTDSPContext; void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx); |