[SCM] libav/experimental: Update binkaudio to new DECLARE_ALIGNED syntax

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:59:11 UTC 2013


The following commit has been merged in the experimental branch:
commit abafc87c46ba7c61075d39b658525f3d8f63274d
Author: Daniel Verkamp <daniel at drv.nu>
Date:   Sun Jan 31 15:07:25 2010 +0000

    Update binkaudio to new DECLARE_ALIGNED syntax
    
    Originally committed as revision 21573 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c
index 8704af7..1e71cd8 100644
--- a/libavcodec/binkaudio.c
+++ b/libavcodec/binkaudio.c
@@ -49,8 +49,8 @@ typedef struct {
     int num_bands;
     unsigned int *bands;
     float root;
-    DECLARE_ALIGNED_16(FFTSample, coeffs[BINK_BLOCK_MAX_SIZE]);
-    DECLARE_ALIGNED_16(short, previous[BINK_BLOCK_MAX_SIZE / 16]);  ///< coeffs from previous audio block
+    DECLARE_ALIGNED_16(FFTSample, coeffs)[BINK_BLOCK_MAX_SIZE];
+    DECLARE_ALIGNED_16(short, previous)[BINK_BLOCK_MAX_SIZE / 16];  ///< coeffs from previous audio block
     float *coeffs_ptr[MAX_CHANNELS]; ///< pointers to the coeffs arrays for float_to_int16_interleave
     union {
         RDFTContext rdft;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list