Shaka Packager SDK
mpd_flags.h
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 //
7 // Defines Mpd flags.
8 
9 #ifndef APP_MPD_FLAGS_H_
10 #define APP_MPD_FLAGS_H_
11 
12 #include <gflags/gflags.h>
13 
14 DECLARE_bool(generate_static_live_mpd);
15 DECLARE_bool(output_media_info);
16 DECLARE_string(mpd_output);
17 DECLARE_string(base_urls);
18 DECLARE_double(minimum_update_period);
19 DECLARE_double(min_buffer_time);
20 DECLARE_double(suggested_presentation_delay);
21 DECLARE_string(utc_timings);
22 DECLARE_bool(generate_dash_if_iop_compliant_mpd);
23 DECLARE_bool(allow_approximate_segment_timeline);
24 DECLARE_bool(allow_codec_switching);
25 DECLARE_bool(include_mspr_pro_for_playready);
26 DECLARE_bool(dash_force_segment_list);
27 
28 #endif // APP_MPD_FLAGS_H_