|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h" |
|
#include "libavutil/attributes.h" |
|
#include "libavutil/cpu.h" |
|
#include "libavutil/x86/cpu.h" |
|
#include "libavcodec/idctdsp.h" |
|
#include "libavcodec/xvididct.h" |
|
|
|
#include "xvididct.h" |
|
|
|
av_cold void ff_xvid_idct_init_x86(IDCTDSPContext *c, AVCodecContext *avctx, |
|
unsigned high_bit_depth) |
|
{ |
|
#if HAVE_X86ASM |
|
int cpu_flags = av_get_cpu_flags(); |
|
|
|
if (high_bit_depth || |
|
!(avctx->idct_algo == FF_IDCT_AUTO || |
|
avctx->idct_algo == FF_IDCT_XVID)) |
|
return; |
|
|
|
if (EXTERNAL_SSE2(cpu_flags)) { |
|
c->idct_put = ff_xvid_idct_put_sse2; |
|
c->idct_add = ff_xvid_idct_add_sse2; |
|
c->idct = ff_xvid_idct_sse2; |
|
c->perm_type = FF_IDCT_PERM_SSE2; |
|
} |
|
#endif |
|
} |
|
|