From 58ded09bd14e149af113b8373c1c2cd7958dfe54 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Wed, 3 Feb 2016 01:02:39 +0000 Subject: dirac_dwt: Rename init2 to init The functions are all private. --- libavcodec/diracdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/diracdec.c') diff --git a/libavcodec/diracdec.c b/libavcodec/diracdec.c index de7daf3..f3a3bbf 100644 --- a/libavcodec/diracdec.c +++ b/libavcodec/diracdec.c @@ -1755,8 +1755,8 @@ static int dirac_decode_frame_internal(DiracContext *s) memset(p->idwt_buf, 0, p->idwt_stride * p->idwt_height); decode_component(s, comp); /* [DIRAC_STD] 13.4.1 core_transform_data() */ } - ret = ff_spatial_idwt_init2(&d, p->idwt_buf, p->idwt_width, p->idwt_height, p->idwt_stride, - s->wavelet_idx+2, s->wavelet_depth, p->idwt_tmp, s->bit_depth); + ret = ff_spatial_idwt_init(&d, p->idwt_buf, p->idwt_width, p->idwt_height, p->idwt_stride, + s->wavelet_idx+2, s->wavelet_depth, p->idwt_tmp, s->bit_depth); if (ret < 0) return ret; -- cgit v1.1