diff options
author | Martin Storsjö <martin@martin.st> | 2017-01-03 16:38:56 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2017-03-11 13:14:26 +0200 |
commit | 1d8ab576a7e40ea6209dd753929f26dcb37e1444 (patch) | |
tree | 06388f3d22dd9beda9a7f8c755ba1d57c29c70f1 /libavcodec/arm/vp9itxfm_neon.S | |
parent | 9532a7d4d060f2a2741225a76945daed52dbc478 (diff) | |
download | ffmpeg-1d8ab576a7e40ea6209dd753929f26dcb37e1444.tar.gz |
arm: vp9itxfm: Share instructions for loading idct coeffs in the 8x8 function
This is cherrypicked from libav commit
3933b86bb93aca47f29fbd493075b0f110c1e3f5.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/arm/vp9itxfm_neon.S')
-rw-r--r-- | libavcodec/arm/vp9itxfm_neon.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/arm/vp9itxfm_neon.S b/libavcodec/arm/vp9itxfm_neon.S index 33a7af1109..78fdae661f 100644 --- a/libavcodec/arm/vp9itxfm_neon.S +++ b/libavcodec/arm/vp9itxfm_neon.S @@ -412,13 +412,12 @@ function ff_vp9_\txfm1\()_\txfm2\()_8x8_add_neon, export=1 .ifc \txfm1\()_\txfm2,idct_idct movrel r12, idct_coeffs vpush {q4-q5} - vld1.16 {q0}, [r12,:128] .else movrel r12, iadst8_coeffs vld1.16 {q1}, [r12,:128]! vpush {q4-q7} - vld1.16 {q0}, [r12,:128] .endif + vld1.16 {q0}, [r12,:128] vmov.i16 q2, #0 vmov.i16 q3, #0 |