mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ppc: fix build with altivec disabled
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
28f9ab7029
commit
ffdd93a25e
@ -177,9 +177,11 @@ static void vp3_idct_add_altivec(uint8_t *dst, int stride, DCTELEM block[64])
|
|||||||
|
|
||||||
av_cold void ff_vp3dsp_init_ppc(VP3DSPContext *c, int flags)
|
av_cold void ff_vp3dsp_init_ppc(VP3DSPContext *c, int flags)
|
||||||
{
|
{
|
||||||
if (HAVE_ALTIVEC && av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
|
#if HAVE_ALTIVEC
|
||||||
|
if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
|
||||||
c->idct_put = vp3_idct_put_altivec;
|
c->idct_put = vp3_idct_put_altivec;
|
||||||
c->idct_add = vp3_idct_add_altivec;
|
c->idct_add = vp3_idct_add_altivec;
|
||||||
c->idct_perm = FF_TRANSPOSE_IDCT_PERM;
|
c->idct_perm = FF_TRANSPOSE_IDCT_PERM;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user