diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-29 19:05:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-11-29 19:26:26 +0100 |
commit | 606702ea348301e3daa97f578982f6614fa4c4bd (patch) | |
tree | bcefe73b16b9702e96384f45cc18bf1c96d1a5a9 /ffserver_config.c | |
parent | 472fee91bcf9b7bae81fd4c00bbe5151ca458a7c (diff) | |
download | ffmpeg-606702ea348301e3daa97f578982f6614fa4c4bd.tar.gz |
ffsrever: Make the status page bitexact if any stream is bitexact
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffserver_config.c')
-rw-r--r-- | ffserver_config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ffserver_config.c b/ffserver_config.c index 2354cc7dc0..05c6622fde 100644 --- a/ffserver_config.c +++ b/ffserver_config.c @@ -1048,6 +1048,7 @@ static int ffserver_parse_config_stream(FFServerConfig *config, const char *cmd, AV_OPT_FLAG_VIDEO_PARAM, config) < 0) goto nomem; } else if (!av_strcasecmp(cmd, "BitExact")) { + config->bitexact = 1; if (ffserver_save_avoption("flags", "+bitexact", AV_OPT_FLAG_VIDEO_PARAM, config) < 0) goto nomem; } else if (!av_strcasecmp(cmd, "DctFastint")) { |