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/vorbisdec.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/vorbisdec.c') diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c index d52bfd5d61..59c582b93e 100644 --- a/libavcodec/vorbisdec.c +++ b/libavcodec/vorbisdec.c @@ -30,7 +30,6 @@ #include "avcodec.h" #include "get_bits.h" #include "fft.h" -#include "fmtconvert.h" #include "internal.h" #include "vorbis.h" @@ -123,7 +122,6 @@ typedef struct vorbis_context_s { GetBitContext gb; VorbisDSPContext dsp; AVFloatDSPContext fdsp; - FmtConvertContext fmt_conv; FFTContext mdct[2]; uint8_t first_frame; @@ -1018,7 +1016,6 @@ static av_cold int vorbis_decode_init(AVCodecContext *avctx) vc->avctx = avctx; ff_vorbisdsp_init(&vc->dsp); avpriv_float_dsp_init(&vc->fdsp, avctx->flags & CODEC_FLAG_BITEXACT); - ff_fmt_convert_init(&vc->fmt_conv, avctx); avctx->sample_fmt = AV_SAMPLE_FMT_FLTP; -- cgit v1.2.3