summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index a64497db03..57bf09e027 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -149,6 +149,18 @@ typedef struct {
} IndividualChannelStream;
/**
+ * Temporal Noise Shaping
+ */
+typedef struct {
+ int present;
+ int n_filt[8];
+ int length[8][4];
+ int direction[8][4];
+ int order[8][4];
+ float coef[8][4][TNS_MAX_ORDER];
+} TemporalNoiseShaping;
+
+/**
* Dynamic Range Control - decoded from the bitstream but not processed further.
*/
typedef struct {