summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-11-28 19:36:31 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-11-28 23:13:45 +0100
commitddab41995fe185eb04ffe05b98fd9df99a7c0335 (patch)
treea6c1ff1dc5d3becb37965706627f084d344340eb /ffserver.c
parent4f60d53b186782f822feafd417c6ee22ccd64bd4 (diff)
ffserver: drop stream AudioQuality option
It has no effect, and it was never documented.
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/ffserver.c b/ffserver.c
index d34c8a835c..0243a98f4f 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -4384,11 +4384,6 @@ static int parse_ffconfig(const char *filename)
get_arg(arg, sizeof(arg), &p);
if (stream)
audio_enc.sample_rate = atoi(arg);
- } else if (!av_strcasecmp(cmd, "AudioQuality")) {
- get_arg(arg, sizeof(arg), &p);
- if (stream) {
-// audio_enc.quality = atof(arg) * 1000;
- }
} else if (!av_strcasecmp(cmd, "VideoBitRateRange")) {
if (stream) {
int minrate, maxrate;