projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Increase alignment for DCT block arrays from 8 to 16
[ffmpeg.git]
/
libavcodec
/
mjpegdec.h
diff --git
a/libavcodec/mjpegdec.h
b/libavcodec/mjpegdec.h
index
6c1e40f
..
d6022eb
100644
(file)
--- a/
libavcodec/mjpegdec.h
+++ b/
libavcodec/mjpegdec.h
@@
-82,7
+82,7
@@
typedef struct MJpegDecodeContext {
AVFrame picture; /* picture structure */
int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
int8_t *qscale_table;
- DECLARE_ALIGNED_
8
(DCTELEM, block[64]);
+ DECLARE_ALIGNED_
16
(DCTELEM, block[64]);
ScanTable scantable;
DSPContext dsp;