Parameter added for user to set the cutoff frequency when encoding with faac.

Patch by Luca Abeni - lucabe72 at email dot it.

Originally committed as revision 4837 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Luca Abeni
2006-01-10 20:07:29 +00:00
committed by Benjamin Larsson
parent e0f80bd744
commit 14f0c8e28a
3 changed files with 9 additions and 0 deletions

View File

@@ -1982,6 +1982,13 @@ typedef struct AVCodecContext {
* - decoding: unused
*/
int directpred;
/**
* audio cutoff bandwidth (0 means "automatic") . Currently used only by FAAC
* - encoding: set by user.
* - decoding: unused
*/
int cutoff;
} AVCodecContext;
/**