From c576814d30e287cdd778c6c50f50631b3c87be12 Mon Sep 17 00:00:00 2001 From: Tomohiro IKEDA Date: Thu, 12 Mar 2020 02:25:33 +0900 Subject: [PATCH] Clean up descriptions in mpd command line flags (#730) Remove the 'Exclusive' statements on --mpd_output and --output_media_info as they can already work together. --- packager/app/mpd_flags.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packager/app/mpd_flags.cc b/packager/app/mpd_flags.cc index 9ee52d3a9d..62231840f4 100644 --- a/packager/app/mpd_flags.cc +++ b/packager/app/mpd_flags.cc @@ -16,15 +16,12 @@ DEFINE_bool(generate_static_live_mpd, "static mpd instead. Note that if segment_template is not " "specified, shaka-packager always generates static mpd regardless " "of the value of this flag."); -// TODO(rkuroiwa, kqyang): Remove the 'Exclusive' statements once -// --output_media_info can work together with --mpd_output. DEFINE_bool(output_media_info, false, "Create a human readable format of MediaInfo. The output file name " "will be the name specified by output flag, suffixed with " - "'.media_info'. Exclusive with --mpd_output."); -DEFINE_string(mpd_output, "", - "MPD output file name. Exclusive with --output_media_info."); + "'.media_info'."); +DEFINE_string(mpd_output, "", "MPD output file name."); DEFINE_string(base_urls, "", "Comma separated BaseURLs for the MPD. The values will be added "