diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-05-30 05:44:22 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-05-30 05:44:22 +0000 |
commit | 871371a768a35daae9ab841334fa66a30762a655 (patch) | |
tree | 9ff139db6878e16a18111b7633aa15cc70fc9b43 /libavcodec/snow.h | |
parent | 383f62fdfe530125d97651c4f1c337890b2c16cd (diff) | |
download | ffmpeg-871371a768a35daae9ab841334fa66a30762a655.tar.gz |
Snow: fix subband weighting in wavelet cmp functions. use 32x32 cmp in iterative motion estimation.
Originally committed as revision 5427 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.h')
-rw-r--r-- | libavcodec/snow.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h index 99b04f7a46..4704177be9 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -121,6 +121,9 @@ extern void ff_snow_vertical_compose97i(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, D extern void ff_snow_horizontal_compose97i(DWTELEM *b, int width); extern void ff_snow_inner_add_yblock(uint8_t *obmc, const int obmc_stride, uint8_t * * block, int b_w, int b_h, int src_x, int src_y, int src_stride, slice_buffer * sb, int add, uint8_t * dst8); +int w53_32_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h); +int w97_32_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h); + /* C bits used by mmx/sse2/altivec */ |