diff avcodec.h @ 3031:0f5f311f2f94 libavcodec

Parameter added for user to set the cutoff frequency when encoding with faac. Patch by Luca Abeni - lucabe72 at email dot it.
author banan
date Tue, 10 Jan 2006 20:07:29 +0000
parents 6bc2dc147ac5
children 0d08717a0156
line wrap: on
line diff
--- a/avcodec.h	Mon Jan 09 15:41:39 2006 +0000
+++ b/avcodec.h	Tue Jan 10 20:07:29 2006 +0000
@@ -1982,6 +1982,13 @@
      * - decoding: unused
      */
     int directpred;
+    
+    /**
+     * audio cutoff bandwidth (0 means "automatic") . Currently used only by FAAC
+     * - encoding: set by user.
+     * - decoding: unused
+     */
+    int cutoff;
 } AVCodecContext;
 
 /**