diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-02-03 07:05:11 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-02-03 07:05:11 +0000 |
commit | ed5d7a531cd878aaa02804f8def1eb897b43d4ac (patch) | |
tree | 8e311ddf7fe73fb76c1764a83d46b12c4aa5543b /libavcodec/h264.h | |
parent | 51f0ac65df62c8da804f2e995c38ab9adaf32b9b (diff) | |
download | ffmpeg-ed5d7a531cd878aaa02804f8def1eb897b43d4ac.tar.gz |
ff_h264_idct8_add_sse2.
compared to mmx, 217->126 cycles on core2, 262->220 on k8.
Originally committed as revision 11826 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 6d0486b62c..f45b3a6a4a 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -348,7 +348,7 @@ typedef struct H264Context{ GetBitContext *intra_gb_ptr; GetBitContext *inter_gb_ptr; - DECLARE_ALIGNED_8(DCTELEM, mb[16*24]); + DECLARE_ALIGNED_16(DCTELEM, mb[16*24]); DCTELEM mb_padding[256]; ///< as mb is addressed by scantable[i] and scantable is uint8_t we can either check that i is not to large or ensure that there is some unused stuff after mb /** |