diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-07-01 15:08:02 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-07-01 15:08:02 +0000 |
commit | 39c601b5e7e03ae13d1946149ace7c8b617c7ef3 (patch) | |
tree | 3beb34e957e41634394173e0c8c1e79db5fe1fc7 /libavcodec/rv34.h | |
parent | 06a497afabd04cbb7f8c7e069a2ac740b3e585ff (diff) | |
download | ffmpeg-39c601b5e7e03ae13d1946149ace7c8b617c7ef3.tar.gz |
RV3/4 intra types array causes alignment issues (at least on ARM5), thus change
its stride and offset to always have align 4.
Originally committed as revision 19316 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index a4f768eb2a..0da348b6ab 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -85,6 +85,7 @@ typedef struct RV34DecContext{ MpegEncContext s; int8_t *intra_types_hist;///< old block types, used for prediction int8_t *intra_types; ///< block types + int intra_types_stride;///< block types array stride const uint8_t *luma_dc_quant_i;///< luma subblock DC quantizer for intraframes const uint8_t *luma_dc_quant_p;///< luma subblock DC quantizer for interframes |