diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-03-05 18:44:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-05 18:44:04 +0000 |
commit | c0a0170c165b5fe962807e93b3b0578386a2e8db (patch) | |
tree | 9a372b8cda001b4733130e8b67d15f1edb2af9dd /libavcodec/dsputil.h | |
parent | ca5b9f20b2760413a06373e5f4863f764d925c4d (diff) | |
download | ffmpeg-c0a0170c165b5fe962807e93b3b0578386a2e8db.tar.gz |
fix motion compensation with (x+1/2,y+1/2) MVs
Originally committed as revision 2849 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 0a77c7f4fc..99cac9fa6b 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -204,6 +204,8 @@ typedef struct DSPContext { */ op_pixels_func avg_no_rnd_pixels_tab[2][4]; + void (*put_no_rnd_pixels_l2[2])(uint8_t *block/*align width (8 or 16)*/, const uint8_t *a/*align 1*/, const uint8_t *b/*align 1*/, int line_size, int h); + /** * Thirdpel motion compensation with rounding (a+b+1)>>1. * this is an array[12] of motion compensation funcions for the 9 thirdpel positions<br> |