diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 01:10:46 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2011-01-15 01:10:46 +0000 |
commit | 2a1f431d38ea9c05abb215d70c7dc09cdb6888ab (patch) | |
tree | c6e5f1d0b7a3fd2eee950dbb915ef27625644232 /libavcodec/h264.h | |
parent | 290fabc684244b86d47527008020b0b2eb62f836 (diff) | |
download | ffmpeg-2a1f431d38ea9c05abb215d70c7dc09cdb6888ab.tar.gz |
H.264/SVQ3: make chroma DC work the same way as luma DC
No speed improvement, but necessary for some future stuff.
Also opens up the possibility of asm chroma dc idct/dequant.
Originally committed as revision 26349 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 17fd680369..4436f6f467 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -407,6 +407,7 @@ typedef struct H264Context{ DECLARE_ALIGNED(16, DCTELEM, mb)[16*24]; DECLARE_ALIGNED(16, DCTELEM, mb_luma_dc)[16]; + DECLARE_ALIGNED(16, DCTELEM, mb_chroma_dc)[2][4]; DCTELEM mb_padding[256]; ///< as mb is addressed by scantable[i] and scantable is uint8_t we can either check that i is not too large or ensure that there is some unused stuff after mb /** |