diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-22 03:26:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-22 03:26:30 +0000 |
commit | 4a88852623168077d77a073f7ce61047d12becbf (patch) | |
tree | 7be0121361d19e2a9613be8c7407d453504b5557 /libswscale/swscale_internal.h | |
parent | 587d24ff252352144dfe60b73915e36e5a80502b (diff) | |
download | ffmpeg-4a88852623168077d77a073f7ce61047d12becbf.tar.gz |
Move array specifiers outside DECLARE_ALIGNED() invocations
Originally committed as revision 30385 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 9e48010c36..0ae6dbc0f2 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -245,7 +245,7 @@ typedef struct SwsContext { #endif #if HAVE_VIS - DECLARE_ALIGNED(8, uint64_t, sparc_coeffs[10]); + DECLARE_ALIGNED(8, uint64_t, sparc_coeffs)[10]; #endif /* function pointers for swScale() */ |