diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2009-10-06 16:06:15 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-10-06 16:06:15 +0000 |
commit | 73c6f59830458675e7aef117f0e2ab2c39eb4300 (patch) | |
tree | 7b1fb5c96ceb485ad41a4e671e1bc92bd3c8472d /libavcodec/dsputil.h | |
parent | 95ce961d886668bb713094bd0f71b40925cf680f (diff) | |
download | ffmpeg-73c6f59830458675e7aef117f0e2ab2c39eb4300.tar.gz |
Move HuffYUV left prediction to dsputil.
Patch by Nathan Caldwell, saintdev gmail
Originally committed as revision 20179 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 dd7b22d537..b7dc9e1ee3 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -349,6 +349,8 @@ typedef struct DSPContext { */ void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top); void (*add_hfyu_median_prediction)(uint8_t *dst, uint8_t *top, uint8_t *diff, int w, int *left, int *left_top); + int (*add_hfyu_left_prediction)(uint8_t *dst, uint8_t *src, int w, int acc); + void (*add_hfyu_left_prediction_bgr32)(uint8_t *dst, uint8_t *src, int w, int *red, int *green, int *blue); /* this might write to dst[w] */ void (*add_png_paeth_prediction)(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp); void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w); |