diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-31 23:58:58 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-01 10:32:24 +0100 |
commit | 998170913c759c45f913f9c20d7b18e6505f7cde (patch) | |
tree | 315ca1b9f375d9ba37b97db16bea64fd4c9343e6 /libavcodec/arm/h264cmc_neon.S | |
parent | b6a3849adb0381a437952a785d39e22cb3b00282 (diff) | |
download | ffmpeg-998170913c759c45f913f9c20d7b18e6505f7cde.tar.gz |
ARM: use standard syntax for all LDRD/STRD instructions
The standard syntax requires two destination registers for
LDRD/STRD instructions. Some versions of the GNU assembler
allow using only one with the second implicit, others are
more strict.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/h264cmc_neon.S')
-rw-r--r-- | libavcodec/arm/h264cmc_neon.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/arm/h264cmc_neon.S b/libavcodec/arm/h264cmc_neon.S index e82394d899..c7e54605bb 100644 --- a/libavcodec/arm/h264cmc_neon.S +++ b/libavcodec/arm/h264cmc_neon.S @@ -24,7 +24,7 @@ .macro h264_chroma_mc8 type, codec=h264 function ff_\type\()_\codec\()_chroma_mc8_neon, export=1 push {r4-r7, lr} - ldrd r4, [sp, #20] + ldrd r4, r5, [sp, #20] .ifc \type,avg mov lr, r0 .endif @@ -182,7 +182,7 @@ endfunc .macro h264_chroma_mc4 type, codec=h264 function ff_\type\()_\codec\()_chroma_mc4_neon, export=1 push {r4-r7, lr} - ldrd r4, [sp, #20] + ldrd r4, r5, [sp, #20] .ifc \type,avg mov lr, r0 .endif |