projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
015d0bb
)
Fix compilation on powerpc.
author
Aurelien Jacobs
<aurel@gnuage.org>
Tue, 4 Mar 2008 18:35:12 +0000
(18:35 +0000)
committer
Aurelien Jacobs
<aurel@gnuage.org>
Tue, 4 Mar 2008 18:35:12 +0000
(18:35 +0000)
DECLARE_ALIGNED_8 is not defined at that point, but this code is powerpc
only, so it's really equivalent to DECLARE_ALIGNED(16...
Originally committed as revision 12313 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/dsputil.h
patch
|
blob
|
history
diff --git
a/libavcodec/dsputil.h
b/libavcodec/dsputil.h
index ad258666c6ab5f188897932b954fcbf6abc78808..bde3a1cf52232547b6438f200550504cb1c9e85e 100644
(file)
--- a/
libavcodec/dsputil.h
+++ b/
libavcodec/dsputil.h
@@
-162,7
+162,7
@@
typedef struct ScanTable{
uint8_t raster_end[64];
#ifdef ARCH_POWERPC
/** Used by dct_quantize_altivec to find last-non-zero */
- DECLARE_ALIGNED
_8(
uint8_t, inverse[64]);
+ DECLARE_ALIGNED
(16,
uint8_t, inverse[64]);
#endif
} ScanTable;