]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/opus_celt.h
ffplay: drop lock manager use
[ffmpeg] / libavcodec / opus_celt.h
index 45d50ab27b9f239d896e83d07e0b5aa9f82cd8d3..9289a1867af7ec27247b01cbb29766b653120e19 100644 (file)
@@ -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);