diff options
author | Luca Abeni <lucabe72@email.it> | 2006-01-10 20:07:29 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2006-01-10 20:07:29 +0000 |
commit | 14f0c8e28af6f34411d86fa3f965e5be870024e6 (patch) | |
tree | 49a8691dc65cc32b37e12bf4f7d42b089f9051d1 /libavcodec/utils.c | |
parent | e0f80bd744996df4429624373f96442e6fa5ec07 (diff) | |
download | ffmpeg-14f0c8e28af6f34411d86fa3f965e5be870024e6.tar.gz |
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
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index ede6cc761c..da74865eb8 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -494,6 +494,7 @@ static AVOption options[]={ {"rate_emu", NULL, OFFSET(rate_emu), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, {"sample_rate", NULL, OFFSET(sample_rate), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, {"channels", NULL, OFFSET(channels), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, +{"cutoff", "set cutoff bandwidth", OFFSET(cutoff), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX, A|E}, {"frame_size", NULL, OFFSET(frame_size), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, {"frame_number", NULL, OFFSET(frame_number), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, {"real_pict_num", NULL, OFFSET(real_pict_num), FF_OPT_TYPE_INT, DEFAULT, INT_MIN, INT_MAX}, |