diff options
author | Clément Bœsch <clement@stupeflix.com> | 2014-07-10 15:29:54 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2014-07-10 15:29:54 +0200 |
commit | 7e7168b82d0c42ba6895d4ea95da0c7da0f20573 (patch) | |
tree | 18fbe89a69f99cdf51be4fadae9dcfcccf273331 /libavcodec/h264.h | |
parent | eca1957c4cbee66a0b1f3dcabaffe68d61885f16 (diff) | |
download | ffmpeg-7e7168b82d0c42ba6895d4ea95da0c7da0f20573.tar.gz |
Fix 2 coeffecient typo
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 bf4255bbfd..228558b6f4 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -496,7 +496,7 @@ typedef struct H264Context { GetBitContext *inter_gb_ptr; const uint8_t *intra_pcm_ptr; - DECLARE_ALIGNED(16, int16_t, mb)[16 * 48 * 2]; ///< as a dct coeffecient is int32_t in high depth, we need to reserve twice the space. + DECLARE_ALIGNED(16, int16_t, mb)[16 * 48 * 2]; ///< as a dct coefficient is int32_t in high depth, we need to reserve twice the space. DECLARE_ALIGNED(16, int16_t, mb_luma_dc)[3][16 * 2]; int16_t mb_padding[256 * 2]; ///< 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 |