[FFmpeg-cvslog] avcodec/dcadsp: use LOCAL_ALIGNED_32 instead of LOCAL_ALIGNED(32, ...)

James Almer git at videolan.org
Fri May 6 05:50:20 CEST 2016


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri May  6 00:47:55 2016 -0300| [bd63ecec78207c3c8d3b377c37aa81f56f30a761] | committer: James Almer

avcodec/dcadsp: use LOCAL_ALIGNED_32 instead of LOCAL_ALIGNED(32, ...)

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

 libavcodec/dcadsp.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/dcadsp.c b/libavcodec/dcadsp.c
index 09faee5..25a2039 100644
--- a/libavcodec/dcadsp.c
+++ b/libavcodec/dcadsp.c
@@ -122,7 +122,7 @@ static void sub_qmf32_float_c(SynthFilterContext *synth,
                               const float *filter_coeff, ptrdiff_t npcmblocks,
                               float scale)
 {
-    LOCAL_ALIGNED(32, float, input, [32]);
+    LOCAL_ALIGNED_32(float, input, [32]);
     int i, j;
 
     for (j = 0; j < npcmblocks; j++) {
@@ -151,7 +151,7 @@ static void sub_qmf64_float_c(SynthFilterContext *synth,
                               const float *filter_coeff, ptrdiff_t npcmblocks,
                               float scale)
 {
-    LOCAL_ALIGNED(32, float, input, [64]);
+    LOCAL_ALIGNED_32(float, input, [64]);
     int i, j;
 
     if (!subband_samples_hi)
@@ -243,7 +243,7 @@ static void sub_qmf32_fixed_c(SynthFilterContext *synth,
                               int32_t *hist1, int *offset, int32_t *hist2,
                               const int32_t *filter_coeff, ptrdiff_t npcmblocks)
 {
-    LOCAL_ALIGNED(32, int32_t, input, [32]);
+    LOCAL_ALIGNED_32(int32_t, input, [32]);
     int i, j;
 
     for (j = 0; j < npcmblocks; j++) {
@@ -267,7 +267,7 @@ static void sub_qmf64_fixed_c(SynthFilterContext *synth,
                               int32_t *hist1, int *offset, int32_t *hist2,
                               const int32_t *filter_coeff, ptrdiff_t npcmblocks)
 {
-    LOCAL_ALIGNED(32, int32_t, input, [64]);
+    LOCAL_ALIGNED_32(int32_t, input, [64]);
     int i, j;
 
     if (!subband_samples_hi)



More information about the ffmpeg-cvslog mailing list