mirror of
https://github.com/shaka-project/shaka-packager.git
synced 2026-04-03 11:51:13 +00:00
This work was done over ~80 individual commits in the `cmake` branch, which are now being merged back into `main`. As a roll-up commit, it is too big to be reviewable, but each change was reviewed individually in context of the `cmake` branch. After this, the `cmake` branch will be renamed `cmake-porting-history` and preserved. --------- Co-authored-by: Geoff Jukes <geoffjukes@users.noreply.github.com> Co-authored-by: Bartek Zdanowski <bartek.zdanowski@gmail.com> Co-authored-by: Carlos Bentzen <cadubentzen@gmail.com> Co-authored-by: Dennis E. Mungai <2356871+Brainiarc7@users.noreply.github.com> Co-authored-by: Cosmin Stejerean <cstejerean@gmail.com> Co-authored-by: Carlos Bentzen <carlos.bentzen@bitmovin.com> Co-authored-by: Cosmin Stejerean <cstejerean@meta.com> Co-authored-by: Cosmin Stejerean <cosmin@offbytwo.com>
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
// Copyright 2014 Google LLC. 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 <absl/flags/declare.h>
|
|
#include <absl/flags/flag.h>
|
|
|
|
ABSL_DECLARE_FLAG(bool, generate_static_live_mpd);
|
|
ABSL_DECLARE_FLAG(bool, output_media_info);
|
|
ABSL_DECLARE_FLAG(std::string, mpd_output);
|
|
ABSL_DECLARE_FLAG(std::string, base_urls);
|
|
ABSL_DECLARE_FLAG(double, minimum_update_period);
|
|
ABSL_DECLARE_FLAG(double, min_buffer_time);
|
|
ABSL_DECLARE_FLAG(double, suggested_presentation_delay);
|
|
ABSL_DECLARE_FLAG(std::string, utc_timings);
|
|
ABSL_DECLARE_FLAG(bool, generate_dash_if_iop_compliant_mpd);
|
|
ABSL_DECLARE_FLAG(bool, allow_approximate_segment_timeline);
|
|
ABSL_DECLARE_FLAG(bool, allow_codec_switching);
|
|
ABSL_DECLARE_FLAG(bool, include_mspr_pro_for_playready);
|
|
ABSL_DECLARE_FLAG(bool, dash_force_segment_list);
|
|
ABSL_DECLARE_FLAG(bool, low_latency_dash_mode);
|
|
|
|
#endif // APP_MPD_FLAGS_H_
|