From 1173320249745eab01c901a39054fc0fced33c87 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 8 Jul 2014 08:31:15 -0700 Subject: dsputil: Drop unused bit_depth parameter from all init functions --- libavcodec/dsputil.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libavcodec/dsputil.h') diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b18930559e..350ce1c44a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -78,11 +78,8 @@ void ff_dsputil_init(DSPContext *p, AVCodecContext *avctx); void ff_set_cmp(DSPContext *c, me_cmp_func *cmp, int type); -void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx, - unsigned high_bit_depth); -void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx, - unsigned high_bit_depth); -void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx, - unsigned high_bit_depth); +void ff_dsputil_init_arm(DSPContext *c, AVCodecContext *avctx); +void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx); +void ff_dsputil_init_x86(DSPContext *c, AVCodecContext *avctx); #endif /* AVCODEC_DSPUTIL_H */ -- cgit v1.2.3