]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/aacsbr.h
aacdec: change type of data in decode_audio_specific_config parameters
[ffmpeg] / libavcodec / aacsbr.h
index c865371b15c11fbcdaa6a3c6f15d0d5aebc160bb..6b10ed43e4330193e2c3ae221c320f9599bc448f 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @file libavcodec/aacsbr.h
+ * @file
  * AAC Spectral Band Replication function declarations
  * @author Robert Swain ( rob opendot cl )
  */
@@ -42,10 +42,8 @@ av_cold void ff_aac_sbr_ctx_close(SpectralBandReplication *sbr);
 /** Decode one SBR element. */
 int ff_decode_sbr_extension(AACContext *ac, SpectralBandReplication *sbr,
                             GetBitContext *gb, int crc, int cnt, int id_aac);
-/** Dequantized all channels in one SBR element. */
-void ff_sbr_dequant(AACContext *ac, SpectralBandReplication *sbr, int id_aac);
-/** Apply dequantized SBR to a single AAC channel. */
-void ff_sbr_apply(AACContext *ac, SpectralBandReplication *sbr, int ch,
-                  const float* in, float* out);
+/** Apply one SBR element to one AAC element. */
+void ff_sbr_apply(AACContext *ac, SpectralBandReplication *sbr, int id_aac,
+                  float* L, float *R);
 
 #endif /* AVCODEC_AACSBR_H */