ref: c9561d5302aeb4200488301fc98fffeaa0faee95
parent: a021924092dafc0cfc0736ba26611ad56552c57b
parent: 2e9c1dc10cb5a42414e89e9ddd70312054a4f857
author: Deb Mukherjee <[email protected]>
date: Fri Oct 3 13:10:02 EDT 2014
Merge "Remove experimental-bitstream flag for profiles>0"
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -198,9 +198,6 @@
static const arg_def_t disable_warning_prompt =
ARG_DEF("y", "disable-warning-prompt", 0,
"Display warnings, but do not prompt user to continue.");
-static const arg_def_t experimental_bitstream =
- ARG_DEF(NULL, "experimental-bitstream", 0,
- "Allow experimental bitstream features.");
#if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
static const arg_def_t test16bitinternalarg = ARG_DEF(
@@ -861,8 +858,6 @@
global->disable_warnings = 1;
else if (arg_match(&arg, &disable_warning_prompt, argi))
global->disable_warning_prompt = 1;
- else if (arg_match(&arg, &experimental_bitstream, argi))
- global->experimental_bitstream = 1;
else
argj++;
}
@@ -1199,12 +1194,6 @@
if (!stream->config.cfg.g_w || !stream->config.cfg.g_h)
fatal("Stream %d: Specify stream dimensions with --width (-w) "
" and --height (-h)", stream->index);
-
- if (stream->config.cfg.g_profile != 0 && !global->experimental_bitstream) {
- fatal("Stream %d: profile %d is experimental and requires the --%s flag",
- stream->index, stream->config.cfg.g_profile,
- experimental_bitstream.long_name);
- }
// Check that the codec bit depth is greater than the input bit depth.
if (stream->config.cfg.g_input_bit_depth >