diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-09-09 18:28:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-09-11 19:19:41 +0200 |
commit | 6ce93757ee6b81fe727bfdc9f546fd0ddf9139c3 (patch) | |
tree | 43bda423a8caa08b79704e84c1286095e4b8f131 /libavcodec/ppc/idctdsp.c | |
parent | caccb3a0cdc7ee32cbed7eab156d35025133eadc (diff) | |
download | ffmpeg-6ce93757ee6b81fe727bfdc9f546fd0ddf9139c3.tar.gz |
ppc: Update #endif comments
Diffstat (limited to 'libavcodec/ppc/idctdsp.c')
-rw-r--r-- | libavcodec/ppc/idctdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/idctdsp.c b/libavcodec/ppc/idctdsp.c index c85b58e6ff..690b08beb8 100644 --- a/libavcodec/ppc/idctdsp.c +++ b/libavcodec/ppc/idctdsp.c @@ -225,7 +225,7 @@ static void idct_add_altivec(uint8_t *dest, int stride, int16_t *blk) ADD(dest, vx7, perm1); } -#endif /* HAVE_ALTIVEC */ +#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */ av_cold void ff_idctdsp_init_ppc(IDCTDSPContext *c, AVCodecContext *avctx, unsigned high_bit_depth) @@ -242,5 +242,5 @@ av_cold void ff_idctdsp_init_ppc(IDCTDSPContext *c, AVCodecContext *avctx, c->perm_type = FF_IDCT_PERM_TRANSPOSE; } } -#endif /* HAVE_ALTIVEC */ +#endif /* HAVE_ALTIVEC && HAVE_BIGENDIAN */ } |