Commit d0c5b2ba authored by pulento's avatar pulento

- HQ option for ffserver. Thanks to D Richard Felker III.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@478 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 67044260
......@@ -1546,6 +1546,10 @@ int parse_ffconfig(const char *filename)
if (stream) {
video_enc.gop_size = 1;
}
} else if (!strcasecmp(cmd, "VideoHighQuality")) {
if (stream) {
video_enc.flags |= CODEC_FLAG_HQ;
}
} else if (!strcasecmp(cmd, "NoVideo")) {
video_id = CODEC_ID_NONE;
} else if (!strcasecmp(cmd, "NoAudio")) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment