diff options
author | Nathan Caldwell <saintdev@gmail.com> | 2011-05-06 01:19:52 -0600 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-05-08 12:43:04 -0700 |
commit | b58e29857230eb59cfec4642522258a965f2c440 (patch) | |
tree | 129db4fc8273c97e93cad39eba0af999f05e2ba8 /libavcodec/psymodel.c | |
parent | 5b29af624fe8be5379fd649019a04ff44bfde04f (diff) | |
download | ffmpeg-b58e29857230eb59cfec4642522258a965f2c440.tar.gz |
psymodel: Remove wrapper functions.
Instead use the function pointers directly.
Diffstat (limited to 'libavcodec/psymodel.c')
-rw-r--r-- | libavcodec/psymodel.c | 13 |
1 files changed, 0 insertions, 13 deletions
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) |