diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-09 15:14:35 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 03:54:47 +0100 |
commit | 9628e5a4acb02467d6bcc07989527664bf2334e7 (patch) | |
tree | e238d6fc11ab89ac4637be06166d4670d4866216 /libavcodec/dsputil.h | |
parent | 1f27053b91e4f0b1f6571448db9e363fd84e65b6 (diff) | |
download | ffmpeg-9628e5a4acb02467d6bcc07989527664bf2334e7.tar.gz |
hpeldsp: add half-pel functions (currently copies of dsputil).
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 5c6aedb407..1bd5e0d74e 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -32,6 +32,7 @@ #include "libavutil/intreadwrite.h" #include "avcodec.h" +#include "rnd_avg.h" //#define DEBUG @@ -103,12 +104,6 @@ DEF_OLD_QPEL(qpel8_mc32_old_c) DEF_OLD_QPEL(qpel8_mc13_old_c) DEF_OLD_QPEL(qpel8_mc33_old_c) -#define CALL_2X_PIXELS(a, b, n)\ -static void a(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h){\ - b(block , pixels , line_size, h);\ - b(block+n, pixels+n, line_size, h);\ -} - /* motion estimation */ // h is limited to {width/2, width, 2*width} but never larger than 16 and never smaller than 2 // although currently h<4 is not used as functions with width <8 are neither used nor implemented |