From 9c978f243a47a0906fb32d723fcdd37d7b8cee93 Mon Sep 17 00:00:00 2001 From: Loren Merritt Date: Mon, 3 Feb 2014 23:17:04 +0000 Subject: flac/x86: add ff_flac_lpc_32_sse4() benchmarked on sandybridge x86_64: 1358232 decicycles in flac_lpc_32_c 1244575 decicycles in flac_lpc_32_sse4, James Almer's patch 650045 decicycles in flac_lpc_32_sse4, this patch I haven't tested the edgecases such as odd block lengths odd block length tested-by: James Almer Signed-off-by: Michael Niedermayer --- libavcodec/flacdsp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/flacdsp.h') diff --git a/libavcodec/flacdsp.h b/libavcodec/flacdsp.h index 5e66dc2..272cf2a 100644 --- a/libavcodec/flacdsp.h +++ b/libavcodec/flacdsp.h @@ -33,5 +33,6 @@ typedef struct FLACDSPContext { void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, int bps); void ff_flacdsp_init_arm(FLACDSPContext *c, enum AVSampleFormat fmt, int bps); +void ff_flacdsp_init_x86(FLACDSPContext *c, enum AVSampleFormat fmt, int bps); #endif /* AVCODEC_FLACDSP_H */ -- cgit v1.1