2014-05-22 19:39:30 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
// Defines Mpd flags.
|
|
|
|
|
|
|
|
#ifndef APP_MPD_FLAGS_H_
|
|
|
|
#define APP_MPD_FLAGS_H_
|
|
|
|
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
|
2017-01-07 02:40:37 +00:00
|
|
|
DECLARE_bool(generate_static_mpd);
|
2014-05-22 19:39:30 +00:00
|
|
|
DECLARE_bool(output_media_info);
|
|
|
|
DECLARE_string(mpd_output);
|
|
|
|
DECLARE_string(base_urls);
|
2014-06-26 01:33:09 +00:00
|
|
|
DECLARE_double(minimum_update_period);
|
|
|
|
DECLARE_double(min_buffer_time);
|
|
|
|
DECLARE_double(suggested_presentation_delay);
|
2018-03-17 01:37:53 +00:00
|
|
|
DECLARE_string(utc_timings);
|
2015-08-04 22:26:15 +00:00
|
|
|
DECLARE_bool(generate_dash_if_iop_compliant_mpd);
|
2014-05-22 19:39:30 +00:00
|
|
|
|
|
|
|
#endif // APP_MPD_FLAGS_H_
|