summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-08-28 20:28:20 +0200
committerwm4 <wm4@nowhere>2020-08-29 13:12:32 +0200
commit3427aa4776b73ce0b9c8996bc4ef38da87fe1557 (patch)
tree77805afe715ee37a570e727c88c531def2089473
parent654eef9b82e05af2737ac2b72252b0e852386cf3 (diff)
downloadmpv-3427aa4776b73ce0b9c8996bc4ef38da87fe1557.tar.bz2
mpv-3427aa4776b73ce0b9c8996bc4ef38da87fe1557.tar.xz
encode: undeprecate
I guess the audio timestamp corruption problem is probably solved now.
-rw-r--r--common/encode_lavc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/encode_lavc.c b/common/encode_lavc.c
index e57c3b9d38..d45cf20f82 100644
--- a/common/encode_lavc.c
+++ b/common/encode_lavc.c
@@ -77,8 +77,7 @@ struct mux_stream {
#define OPT_BASE_STRUCT struct encode_opts
const struct m_sub_options encode_config = {
.opts = (const m_option_t[]) {
- {"o", OPT_STRING(file), .flags = CONF_NOCFG | CONF_PRE_PARSE | M_OPT_FILE,
- .deprecation_message = "lack of maintainer"},
+ {"o", OPT_STRING(file), .flags = CONF_NOCFG | CONF_PRE_PARSE | M_OPT_FILE},
{"of", OPT_STRING(format)},
{"ofopts", OPT_KEYVALUELIST(fopts), .flags = M_OPT_HAVE_HELP},
{"ovc", OPT_STRING(vcodec)},