diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 17:52:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 17:52:21 +0100 |
commit | 6d1e9d993a5559ca5c4a578fce499c74528fe8d1 (patch) | |
tree | e0bb88a7451876b192ef4254a6e3320ff75d260c /libavcodec/dsputil.h | |
parent | ac8987591f5503768e7587c25693928f26fcb3d1 (diff) | |
parent | 32ff6432284f713e9f837ee5b36fc8e9f1902836 (diff) | |
download | ffmpeg-6d1e9d993a5559ca5c4a578fce499c74528fe8d1.tar.gz |
Merge commit '32ff6432284f713e9f837ee5b36fc8e9f1902836'
* commit '32ff6432284f713e9f837ee5b36fc8e9f1902836':
dsputil: remove avg_no_rnd_pixels8.
Conflicts:
libavcodec/x86/dsputil_mmx.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 606555a8d4..b837dcc27c 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -297,15 +297,15 @@ typedef struct DSPContext { /** * Halfpel motion compensation with no rounding (a+b)>>1. - * this is an array[2][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 ] + * this is an array[4] of motion compensation functions for 1 + * horizontal blocksize (16) and the 4 halfpel positions<br> + * *pixels_tab[0][ xhalfpel + 2*yhalfpel ] * @param block destination into which the result is averaged (a+b)>>1 * @param pixels source * @param line_size number of bytes in a horizontal line of block * @param h height */ - op_pixels_func avg_no_rnd_pixels_tab[4][4]; + op_pixels_func avg_no_rnd_pixels_tab[1][4]; /** * Thirdpel motion compensation with rounding (a+b+1)>>1. |