From: Yunqing Wang Date: Fri, 16 Nov 2012 20:35:17 +0000 (-0800) Subject: Merge "Add const before the dequant(dq)" into experimental X-Git-Tag: v1.3.0~1217^2~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0eb5590425112044e86b8a24945b8d20552f0f9f;p=libvpx Merge "Add const before the dequant(dq)" into experimental --- 0eb5590425112044e86b8a24945b8d20552f0f9f diff --cc vp9/decoder/idct_blk.c index f18c49b90,998a21187..7805aa09e --- a/vp9/decoder/idct_blk.c +++ b/vp9/decoder/idct_blk.c @@@ -8,10 -8,10 +8,10 @@@ * be found in the AUTHORS file in the root of the source tree. */ -#include "vpx_rtcd.h" +#include "vp9_rtcd.h" #include "vp9/common/idct.h" - void vp9_dequant_dc_idct_add_y_block_c(short *q, short *dq, + void vp9_dequant_dc_idct_add_y_block_c(short *q, const short *dq, unsigned char *pre, unsigned char *dst, int stride, unsigned short *eobs,