Skip to content

Commit ade5248

Browse files
committed
vpx_highbd_quantize_b_sse2: fix function proto
Fixes warning with cl.exe: ``` vpx_dsp\x86\highbd_quantize_intrin_sse2.c(25): warning C4028: formal parameter 3 different from declaration ``` Change-Id: I699a3c28a2c8481d61be59f00b1085891bf3c975
1 parent f433ccf commit ade5248

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vpx_dsp/x86/highbd_quantize_intrin_sse2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "vp9/encoder/vp9_block.h"
2020

2121
void vpx_highbd_quantize_b_sse2(const tran_low_t *coeff_ptr, intptr_t count,
22-
const struct macroblock_plane *mb_plane,
22+
const struct macroblock_plane *const mb_plane,
2323
tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
2424
const int16_t *dequant_ptr, uint16_t *eob_ptr,
2525
const struct ScanOrder *const scan_order) {

0 commit comments

Comments
 (0)