[FFmpeg-cvslog] Use LOCAL_ALIGNED in ff_check_alignment()

Mans Rullgard git at videolan.org
Sun Jul 17 20:12:45 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sat Jul 16 15:37:05 2011 +0100| [58d7efdb2983a338af8e222358814b5fd88a9aec] | committer: Mans Rullgard

Use LOCAL_ALIGNED in ff_check_alignment()

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

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

 libavcodec/dsputil.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 4f17b43..8bb7dc1 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -2844,7 +2844,7 @@ av_cold void dsputil_static_init(void)
 
 int ff_check_alignment(void){
     static int did_fail=0;
-    DECLARE_ALIGNED(16, int, aligned);
+    LOCAL_ALIGNED_16(int, aligned);
 
     if((intptr_t)&aligned & 15){
         if(!did_fail){



More information about the ffmpeg-cvslog mailing list