2023-12-01 17:32:19 +00:00
|
|
|
// Copyright 2014 Google LLC. All rights reserved.
|
2014-02-14 23:21:05 +00:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2014-01-29 21:40:13 +00:00
|
|
|
|
|
|
|
#ifndef APP_MPD_GENERATOR_FLAGS_H_
|
|
|
|
#define APP_MPD_GENERATOR_FLAGS_H_
|
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <absl/flags/flag.h>
|
2014-01-29 21:40:13 +00:00
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
ABSL_FLAG(std::string,
|
|
|
|
input,
|
|
|
|
"",
|
|
|
|
"Comma separated list of MediaInfo input files.");
|
|
|
|
ABSL_FLAG(std::string, output, "", "MPD output file name.");
|
|
|
|
ABSL_FLAG(std::string,
|
|
|
|
base_urls,
|
|
|
|
"",
|
|
|
|
"Comma separated BaseURLs for the MPD. The values will be added "
|
|
|
|
"as <BaseURL> element(s) immediately under the <MPD> element.");
|
2014-01-29 21:40:13 +00:00
|
|
|
#endif // APP_MPD_GENERATOR_FLAGS_H_
|