diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-02 16:03:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-18 18:53:54 +0200 |
commit | 0f53601ac6b88196e2cae07a4c3aad6810413261 (patch) | |
tree | 38b2520d178ae6fffae2a4a37bce1cc6f72a9456 /libavcodec/dsputil.h | |
parent | aa3f2cb58462aed387625189e3dabf91b9fbd3e6 (diff) | |
download | ffmpeg-0f53601ac6b88196e2cae07a4c3aad6810413261.tar.gz |
ppc: drop unused function dct_quantize_altivec()
This also allows dropping some PPC-specific ugliness from dsputil.[ch].
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index aa026e15f5..b7c0bed9ac 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -197,10 +197,6 @@ typedef struct ScanTable{ const uint8_t *scantable; uint8_t permutated[64]; uint8_t raster_end[64]; -#if ARCH_PPC - /** Used by dct_quantize_altivec to find last-non-zero */ - DECLARE_ALIGNED(16, uint8_t, inverse)[64]; -#endif } ScanTable; void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable); |