diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-21 18:02:30 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-22 18:41:36 -0800 |
commit | 32ff6432284f713e9f837ee5b36fc8e9f1902836 (patch) | |
tree | 612a73740e0ed4da651107523ddd2f5f63909efc /libavcodec/dsputil.h | |
parent | 88bd7fdc821aaa0cbcf44cf075c62aaa42121e3f (diff) | |
download | ffmpeg-32ff6432284f713e9f837ee5b36fc8e9f1902836.tar.gz |
dsputil: remove avg_no_rnd_pixels8.
This is never used.
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 1e0366bf9e..e069ea1a35 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -280,15 +280,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. |