提交 1db38dad 编写于 作者: D Diego Biurrun

Make luma_dc_quant_i and luma_dc_quant_p const, fixes a couple of

"assignment discards qualifiers from pointer target type" warnings.
blessed by Konstantin Shishkov

Originally committed as revision 11850 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 f70eccdb
......@@ -81,8 +81,8 @@ typedef struct RV34DecContext{
MpegEncContext s;
int8_t *intra_types_hist;///< old block types, used for prediction
int8_t *intra_types; ///< block types
uint8_t *luma_dc_quant_i;///< luma subblock DC quantizer for intraframes
uint8_t *luma_dc_quant_p;///< luma subblock DC quantizer for interframes
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
RV34VLC *cur_vlcs; ///< VLC set used for current frame decoding
int bits; ///< slice size in bits
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册