[FFmpeg-devel] [PATCH 2/4] lavc/flacenc: partially unroll loop in flac_enc_lpc_16
James Darnley
james.darnley at gmail.com
Thu Feb 20 19:48:58 CET 2014
It now does 12 samples per iteration, up from 4.
>From 1.8 to 3.2 times faster again. 3.6 to 5.7 times faster overall.
Runtime is reduced by a further 2 to 18%. Overall runtime reduced by
4 to 50%.
Same conditions as before apply.
---
libavcodec/flacenc.c | 2 +-
libavcodec/x86/flac_dsp_gpl.asm | 26 +++++++++++++++++++++-----
2 files changed, 22 insertions(+), 6 deletions(-)
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c
index e958cd8..88f57e6 100644
--- a/libavcodec/flacenc.c
+++ b/libavcodec/flacenc.c
@@ -80,7 +80,7 @@ typedef struct FlacSubframe {
int shift;
RiceContext rc;
int32_t samples[FLAC_MAX_BLOCKSIZE];
- int32_t residual[FLAC_MAX_BLOCKSIZE+3];
+ int32_t residual[FLAC_MAX_BLOCKSIZE+11];
} FlacSubframe;
typedef struct FlacFrame {
diff --git a/libavcodec/x86/flac_dsp_gpl.asm b/libavcodec/x86/flac_dsp_gpl.asm
index 2221af8..4f6ece0 100644
--- a/libavcodec/x86/flac_dsp_gpl.asm
+++ b/libavcodec/x86/flac_dsp_gpl.asm
@@ -26,14 +26,14 @@ SECTION_TEXT
INIT_XMM sse4
%if ARCH_X86_64
- cglobal flac_enc_lpc_16, 5, 7, 4, 0, res, smp, len, order, coefs, shift
+ cglobal flac_enc_lpc_16, 5, 7, 8, 0, res, smp, len, order, coefs, shift
%define posj r5
%define negj r6
%define length r2d
movsxd orderq, orderd
%else
- cglobal flac_enc_lpc_16, 5, 6, 4, 0, res, smp, len, order, coefs, shift
+ cglobal flac_enc_lpc_16, 5, 6, 8, 0, res, smp, len, order, coefs, shift
%define posj r2
%define negj r5
%define length r2mp
@@ -57,6 +57,8 @@ neg orderq
.looplen:
pxor m0, m0
+ pxor m4, m4
+ pxor m6, m6
mov posj, orderq
xor negj, negj
@@ -64,20 +66,34 @@ neg orderq
movd m2, [coefsq+posj*4] ; c = coefs[j]
SPLATD m2
movu m1, [smpq+negj*4-4] ; s = smp[i-j-1]
+ movu m5, [smpq+negj*4-4+mmsize]
+ movu m7, [smpq+negj*4-4+mmsize*2]
pmulld m1, m2
+ pmulld m5, m2
+ pmulld m7, m2
paddd m0, m1 ; p += c * s
+ paddd m4, m5
+ paddd m6, m7
dec negj
inc posj
jnz .looporder
psrad m0, m3 ; p >>= shift
+ psrad m4, m3
+ psrad m6, m3
movu m1, [smpq]
+ movu m5, [smpq+mmsize]
+ movu m7, [smpq+mmsize*2]
psubd m1, m0 ; smp[i] - p
+ psubd m5, m4
+ psubd m7, m6
movu [resq], m1 ; res[i] = smp[i] - (p >> shift)
+ movu [resq+mmsize], m5
+ movu [resq+mmsize*2], m7
- add resq, mmsize
- add smpq, mmsize
- sub length, mmsize/4
+ add resq, 3*mmsize
+ add smpq, 3*mmsize
+ sub length, (3*mmsize)/4
jg .looplen
RET
--
1.7.9
More information about the ffmpeg-devel
mailing list