mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-28 20:14:02 +08:00
x86: Fix linking of ProRes DSP ASM with YASM disabled.
This commit is contained in:
@ -31,7 +31,7 @@ void ff_prores_idct_put_10_avx (uint16_t *dst, int linesize,
|
|||||||
|
|
||||||
void ff_proresdsp_x86_init(ProresDSPContext *dsp)
|
void ff_proresdsp_x86_init(ProresDSPContext *dsp)
|
||||||
{
|
{
|
||||||
#if ARCH_X86_64
|
#if ARCH_X86_64 && HAVE_YASM
|
||||||
int flags = av_get_cpu_flags();
|
int flags = av_get_cpu_flags();
|
||||||
|
|
||||||
if (flags & AV_CPU_FLAG_SSE2) {
|
if (flags & AV_CPU_FLAG_SSE2) {
|
||||||
@ -49,6 +49,6 @@ void ff_proresdsp_x86_init(ProresDSPContext *dsp)
|
|||||||
dsp->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
|
dsp->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
|
||||||
dsp->idct_put = ff_prores_idct_put_10_avx;
|
dsp->idct_put = ff_prores_idct_put_10_avx;
|
||||||
}
|
}
|
||||||
#endif
|
#endif /* HAVE_AVX */
|
||||||
#endif
|
#endif /* ARCH_X86_64 && HAVE_YASM */
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user