mirror of https://git.ffmpeg.org/ffmpeg.git
dsp: make put_no_rnd_pixels_tab 4x4 big
This makes it match the other tables and fixes out of array acceses. Fixes CID980012 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
89946c8403
commit
b8820e7aa3
|
@ -292,7 +292,7 @@ typedef struct DSPContext {
|
||||||
* @param line_size number of bytes in a horizontal line of block
|
* @param line_size number of bytes in a horizontal line of block
|
||||||
* @param h height
|
* @param h height
|
||||||
*/
|
*/
|
||||||
op_pixels_func put_no_rnd_pixels_tab[2][4];
|
op_pixels_func put_no_rnd_pixels_tab[4][4];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Halfpel motion compensation with no rounding (a+b)>>1.
|
* Halfpel motion compensation with no rounding (a+b)>>1.
|
||||||
|
|
Loading…
Reference in New Issue