[FFmpeg-cvslog] ARM: fix Thumb-mode simple_idct_arm

Mans Rullgard git at videolan.org
Sat Jan 14 02:53:46 CET 2012


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Fri Jan 13 19:03:14 2012 +0000| [71b3a63e9c87057a1cc1431ac1edd6854e1e4e44] | committer: Mans Rullgard

ARM: fix Thumb-mode simple_idct_arm

The alignment directive must obviously precede the label.
This was never noticed in ARM mode since the location is
already aligned there.

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=71b3a63e9c87057a1cc1431ac1edd6854e1e4e44
---

 libavcodec/arm/simple_idct_arm.S |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/arm/simple_idct_arm.S b/libavcodec/arm/simple_idct_arm.S
index 1490f53..a9c3095 100644
--- a/libavcodec/arm/simple_idct_arm.S
+++ b/libavcodec/arm/simple_idct_arm.S
@@ -491,8 +491,8 @@ __end_bef_a_evaluation:
         bal __end_a_evaluation
 
 
-__constant_ptr__:  @@ see #defines at the beginning of the source code for values.
         .align
+__constant_ptr__:  @@ see #defines at the beginning of the source code for values.
         .word   W1
         .word   W2
         .word   W3



More information about the ffmpeg-cvslog mailing list