diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-04 09:36:53 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-11-11 11:41:49 +0100 |
commit | 7c61e4b1a0f9e9f5b7bc08879e9e101eb90b19ea (patch) | |
tree | a1705af3b2eee40961844bb0f154b9520ad9ef20 | |
parent | db71c4926d948717ce3b74253eb385dc43dcb14d (diff) | |
download | ffmpeg-7c61e4b1a0f9e9f5b7bc08879e9e101eb90b19ea.tar.gz |
hpeldsp: Increase put_no_rnd_pixels_tab[][] size
CC: libav-stable@libav.org
Bug-Id: CID 991852
-rw-r--r-- | libavcodec/hpeldsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hpeldsp.h b/libavcodec/hpeldsp.h index 7ffed1a604..d037cba14e 100644 --- a/libavcodec/hpeldsp.h +++ b/libavcodec/hpeldsp.h @@ -69,7 +69,7 @@ typedef struct HpelDSPContext { /** * Halfpel motion compensation with no rounding (a+b)>>1. - * this is an array[2][4] of motion compensation functions for 2 + * this is an array[4][4] of motion compensation functions for 2 * horizontal blocksizes (8,16) and the 4 halfpel positions<br> * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ] * @param block destination where the result is stored @@ -77,7 +77,7 @@ typedef struct HpelDSPContext { * @param line_size number of bytes in a horizontal line of block * @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. |