From ee964145b5d229571e00bf6883a44189d02babe2 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 21 Feb 2015 11:00:59 +0100 Subject: lavc: remove unused traces of fmtconvert usage Those decoders have been switched to float output and so do not use fmtconvert anymore. --- libavcodec/atrac3.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/atrac3.c') diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 31f484464e..e8d2e2a875 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -41,7 +41,6 @@ #include "avcodec.h" #include "bytestream.h" #include "fft.h" -#include "fmtconvert.h" #include "get_bits.h" #include "internal.h" @@ -107,7 +106,6 @@ typedef struct ATRAC3Context { AtracGCContext gainc_ctx; FFTContext mdct_ctx; - FmtConvertContext fmt_conv; AVFloatDSPContext fdsp; } ATRAC3Context; @@ -910,7 +908,6 @@ static av_cold int atrac3_decode_init(AVCodecContext *avctx) ff_atrac_init_gain_compensation(&q->gainc_ctx, 4, 3); avpriv_float_dsp_init(&q->fdsp, avctx->flags & CODEC_FLAG_BITEXACT); - ff_fmt_convert_init(&q->fmt_conv, avctx); q->units = av_mallocz(sizeof(*q->units) * avctx->channels); if (!q->units) { -- cgit v1.2.3