diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-27 15:49:03 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-27 16:05:49 +0100 |
commit | c358a0364e26ffcd8f5986a85997882e1c36eed2 (patch) | |
tree | 4f9ae1d7ca8f9a32b5207efd14e82a19f7e22c33 | |
parent | 1b3539d4534f9877b463fb8b7fa56b7d20dd1338 (diff) | |
download | ffmpeg-c358a0364e26ffcd8f5986a85997882e1c36eed2.tar.gz |
dsputil: remove stale bink prototypes and comments
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/dsputil.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 93fbe9c6f7..536357a529 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -111,11 +111,6 @@ void ff_vp3_idct_dc_add_c(uint8_t *dest/*align 8*/, int line_size, const DCTELEM void ff_vp3_v_loop_filter_c(uint8_t *src, int stride, int *bounding_values); void ff_vp3_h_loop_filter_c(uint8_t *src, int stride, int *bounding_values); -/* Bink functions */ -void ff_bink_idct_c (DCTELEM *block); -void ff_bink_idct_add_c(uint8_t *dest, int linesize, DCTELEM *block); -void ff_bink_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block); - /* EA functions */ void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block); @@ -557,7 +552,6 @@ typedef struct DSPContext { h264_chroma_mc_func put_rv40_chroma_pixels_tab[3]; h264_chroma_mc_func avg_rv40_chroma_pixels_tab[3]; - /* bink functions */ op_fill_func fill_block_tab[2]; } DSPContext; |