diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2005-04-25 01:01:41 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2005-04-25 01:01:41 +0000 |
commit | 42251a2a4fb2ff5d4b90d4e5ff04672cccc851ba (patch) | |
tree | 8ab34d20aef9b677384e167a0cb3fd867e055026 /libavcodec/dsputil.h | |
parent | dee6dde66928e427db32afd8730024fcf2a1ac35 (diff) | |
download | ffmpeg-42251a2a4fb2ff5d4b90d4e5ff04672cccc851ba.tar.gz |
MMX for H.264 deblocking filter
Originally committed as revision 4158 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 7598b3a251..57547431ed 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -274,6 +274,11 @@ 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 (*bswap_buf)(uint32_t *dst, uint32_t *src, int w); + + void (*h264_v_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int *tc0); + void (*h264_h_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int *tc0); + void (*h264_v_loop_filter_chroma)(uint8_t *pix, int stride, int alpha, int beta, int *tc0); + void (*h264_h_loop_filter_chroma)(uint8_t *pix, int stride, int alpha, int beta, int *tc0); void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale); void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale); |