X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fopus_celt.h;h=9289a1867af7ec27247b01cbb29766b653120e19;hb=60c9a2553041152a32e7093756f728898593a585;hp=45d50ab27b9f239d896e83d07e0b5aa9f82cd8d3;hpb=ce726e77579363fffa3233a865025a6790c9f924;p=ffmpeg diff --git a/libavcodec/opus_celt.h b/libavcodec/opus_celt.h index 45d50ab27b9..9289a1867af 100644 --- a/libavcodec/opus_celt.h +++ b/libavcodec/opus_celt.h @@ -98,6 +98,7 @@ struct CeltFrame { CeltPVQ *pvq; int channels; int output_channels; + int apply_phase_inv; enum CeltBlockSize size; int start_band; @@ -156,7 +157,8 @@ static av_always_inline void celt_renormalize_vector(float *X, int N, float gain X[i] *= g; } -int ff_celt_init(AVCodecContext *avctx, CeltFrame **f, int output_channels); +int ff_celt_init(AVCodecContext *avctx, CeltFrame **f, int output_channels, + int apply_phase_inv); void ff_celt_free(CeltFrame **f);