diff options
author | Martin Storsjö <martin@martin.st> | 2014-01-07 14:01:24 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-01-07 19:30:13 +0200 |
commit | 952d3187d8eda7067fcd73f1d5f17837fa65eb34 (patch) | |
tree | e90c4f3916f3b047315d63f0db36994e02460f6d /libavcodec/arm | |
parent | 5dae4872357613a0b51120b54a4c5221e0ec3f69 (diff) | |
download | ffmpeg-streaming-952d3187d8eda7067fcd73f1d5f17837fa65eb34.zip ffmpeg-streaming-952d3187d8eda7067fcd73f1d5f17837fa65eb34.tar.gz |
arm: Add a missing # as prefix for an immediate constant
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/vp3dsp_neon.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/vp3dsp_neon.S b/libavcodec/arm/vp3dsp_neon.S index e5ecfc3..58bd97d 100644 --- a/libavcodec/arm/vp3dsp_neon.S +++ b/libavcodec/arm/vp3dsp_neon.S @@ -355,7 +355,7 @@ function ff_vp3_idct_dc_add_neon, export=1 mov r3, r0 add r12, r12, #15 vdup.16 q15, r12 - mov r12, 0 + mov r12, #0 strh r12, [r2] vshr.s16 q15, q15, #5 |