summaryrefslogtreecommitdiff
path: root/libavcodec/hpeldsp.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-19 14:43:47 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-19 14:47:04 +0100
commit1e41b8cd072e4f738d9ef75b1ac310a9c8fbcc19 (patch)
tree413002f9fc6db9b5be37aac475965628a8663cab /libavcodec/hpeldsp.h
parent21aa4fafcd70ba83c27ccc9f2f301774a618c4a5 (diff)
hpeldsp: Increase put_no_rnd_pixels_tab[][] size
Fixes CID991852 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hpeldsp.h')
-rw-r--r--libavcodec/hpeldsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hpeldsp.h b/libavcodec/hpeldsp.h
index a71a82e8ad..57a4cc1a9f 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.