Merge remote branch 'qatar/master'
* qatar/master: log: Fix an oob array read. cosmetics: trim trailing whitespace in postproc Ban strncpy() it's too easy to misuse. psymodel: Remove wrapper functions. aacenc: Replace loop counters in aac_encode_frame() with more descriptive 'ch' and 'w'. regtest: remove redundant flags in jpg test regtest: use run_ffmpeg in do_image_formats regtest: simplify encoding functions ffmpeg.c: check for interlaced flag in the correct place. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user