diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-05 16:18:37 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-05 16:18:37 +0000 |
commit | c9ec7564f0f37e0b672d1f61ee8175acd44c1b00 (patch) | |
tree | b98008fdee5a92c246e175b916f9a5f9131b7662 /libavcodec/rtjpeg.h | |
parent | bc52b0c518af14397955e5f810c363579247bca9 (diff) | |
download | ffmpeg-c9ec7564f0f37e0b672d1f61ee8175acd44c1b00.tar.gz |
Move idct block array variable onto rtjpeg_decode_frame_yuv420 stack since
it is only used there and is only 128 byte large.
Also make it aligned to fix playback with altivec.
Originally committed as revision 6902 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rtjpeg.h')
-rw-r--r-- | libavcodec/rtjpeg.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/rtjpeg.h b/libavcodec/rtjpeg.h index f592e08a43..daecc8a75a 100644 --- a/libavcodec/rtjpeg.h +++ b/libavcodec/rtjpeg.h @@ -25,7 +25,6 @@ typedef struct { int w, h; DSPContext *dsp; - DCTELEM block[64]; uint8_t scan[64]; uint32_t lquant[64]; uint32_t cquant[64]; |