From b58e29857230eb59cfec4642522258a965f2c440 Mon Sep 17 00:00:00 2001 From: Nathan Caldwell Date: Fri, 6 May 2011 01:19:52 -0600 Subject: psymodel: Remove wrapper functions. Instead use the function pointers directly. --- libavcodec/psymodel.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'libavcodec/psymodel.c') diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c index a943ae1f16..fe9363c7a9 100644 --- a/libavcodec/psymodel.c +++ b/libavcodec/psymodel.c @@ -45,19 +45,6 @@ av_cold int ff_psy_init(FFPsyContext *ctx, AVCodecContext *avctx, return 0; } -FFPsyWindowInfo ff_psy_suggest_window(FFPsyContext *ctx, - const int16_t *audio, const int16_t *la, - int channel, int prev_type) -{ - return ctx->model->window(ctx, audio, la, channel, prev_type); -} - -void ff_psy_set_band_info(FFPsyContext *ctx, int channel, - const float *coeffs, const FFPsyWindowInfo *wi) -{ - ctx->model->analyze(ctx, channel, coeffs, wi); -} - av_cold void ff_psy_end(FFPsyContext *ctx) { if (ctx->model->end) -- cgit v1.2.3