diff aac.h @ 7609:3f6fc60f1ed3 libavcodec

More OKed AAC decoder code hunks
author superdump
date Mon, 18 Aug 2008 21:36:58 +0000
parents 850a1625bee4
children 66fb1f3937fa
line wrap: on
line diff
--- a/aac.h	Mon Aug 18 19:39:08 2008 +0000
+++ b/aac.h	Mon Aug 18 21:36:58 2008 +0000
@@ -149,6 +149,18 @@
 } 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 {