diff options
author | TheAMM <the.actual.amm@gmail.com> | 2017-12-16 14:14:26 +0200 |
---|---|---|
committer | Kevin Mitchell <kevmitch@gmail.com> | 2017-12-26 03:33:19 -0700 |
commit | c8d955571dbf15d7aa0280c439c964907ded32f4 (patch) | |
tree | 13ec44eb9449b3d73ba2585c3effda06f801705b | |
parent | e2f71f509fde010e4d0f175014fd4219b7dc7681 (diff) |
encode: rename option --ometadata to --ocopy-metadata
--copy-metadata describes the result of the option better, (copying metadata
from the source file to the output file). Marks the old --no-ometadata
OPT_REMOVED with a suggestion for the new --no-ocopy-metadata.
-rw-r--r-- | DOCS/interface-changes.rst | 1 | ||||
-rw-r--r-- | DOCS/man/encode.rst | 2 | ||||
-rw-r--r-- | common/encode.h | 2 | ||||
-rw-r--r-- | common/encode_lavc.c | 6 | ||||
-rw-r--r-- | options/options.c | 1 |
5 files changed, 7 insertions, 5 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst index 9a334c976f..66d284cdd0 100644 --- a/DOCS/interface-changes.rst +++ b/DOCS/interface-changes.rst @@ -67,6 +67,7 @@ Interface changes - deprecate the --ff-aid, --ff-vid, --ff-sid options and properties (there is no replacement, but you can manually query the track property and use the "ff-index" field to find the mpv track ID to imitate this behavior) + - rename --no-ometadata to --no-ocopy-metadata --- mpv 0.27.0 --- - drop previously deprecated --field-dominance option - drop previously deprecated "osd" command diff --git a/DOCS/man/encode.rst b/DOCS/man/encode.rst index 794b8a1df2..3182f85fcd 100644 --- a/DOCS/man/encode.rst +++ b/DOCS/man/encode.rst @@ -150,6 +150,6 @@ You can encode files from one format/codec to another using this facility. and all pts are passed through as-is. Never seek backwards or use multiple input files in this mode! -``--no-ometadata`` +``--no-ocopy-metadata`` Turns off copying of metadata from input files to output files when encoding (which is enabled by default). diff --git a/common/encode.h b/common/encode.h index e0e39e91cb..ce5d06873d 100644 --- a/common/encode.h +++ b/common/encode.h @@ -49,7 +49,7 @@ struct encode_opts { int neverdrop; int video_first; int audio_first; - int metadata; + int copy_metadata; }; // interface for mplayer.c diff --git a/common/encode_lavc.c b/common/encode_lavc.c index 2d32c56cfc..9c994bfdce 100644 --- a/common/encode_lavc.c +++ b/common/encode_lavc.c @@ -55,12 +55,12 @@ const struct m_sub_options encode_config = { OPT_FLAG("oneverdrop", neverdrop, M_OPT_FIXED), OPT_FLAG("ovfirst", video_first, M_OPT_FIXED), OPT_FLAG("oafirst", audio_first, M_OPT_FIXED), - OPT_FLAG("ometadata", metadata, M_OPT_FIXED), + OPT_FLAG("ocopy-metadata", copy_metadata, M_OPT_FIXED), {0} }, .size = sizeof(struct encode_opts), .defaults = &(const struct encode_opts){ - .metadata = 1, + .copy_metadata = 1, }, }; @@ -278,7 +278,7 @@ struct encode_lavc_context *encode_lavc_init(struct encode_opts *options, void encode_lavc_set_metadata(struct encode_lavc_context *ctx, struct mp_tags *metadata) { - if (ctx->options->metadata) + if (ctx->options->copy_metadata) ctx->metadata = metadata; } diff --git a/options/options.c b/options/options.c index a51f2b189f..3dafbf576b 100644 --- a/options/options.c +++ b/options/options.c @@ -792,6 +792,7 @@ const m_option_t mp_opts[] = { OPT_REMOVED("fs-black-out-screens", NULL), OPT_REPLACED("sub-paths", "sub-file-paths"), OPT_REMOVED("heartbeat-cmd", "use Lua scripting instead"), + OPT_REMOVED("no-ometadata", "use --no-ocopy-metadata"), {0} }; |