2023-12-01 17:32:19 +00:00
|
|
|
// Copyright 2018 Google LLC. All rights reserved.
|
2018-01-18 19:26:47 +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
|
|
|
|
//
|
|
|
|
// Common flags applicable to both DASH and HLS.
|
|
|
|
|
|
|
|
#ifndef PACKAGER_APP_MANIFEST_FLAGS_H_
|
|
|
|
#define PACKAGER_APP_MANIFEST_FLAGS_H_
|
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <absl/flags/declare.h>
|
|
|
|
#include <absl/flags/flag.h>
|
2018-01-18 19:26:47 +00:00
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
ABSL_DECLARE_FLAG(double, time_shift_buffer_depth);
|
|
|
|
ABSL_DECLARE_FLAG(uint64_t, preserved_segments_outside_live_window);
|
|
|
|
ABSL_DECLARE_FLAG(std::string, default_language);
|
|
|
|
ABSL_DECLARE_FLAG(std::string, default_text_language);
|
2024-02-14 17:21:11 +00:00
|
|
|
ABSL_DECLARE_FLAG(bool, force_cl_index);
|
2018-01-18 19:26:47 +00:00
|
|
|
|
|
|
|
#endif // PACKAGER_APP_MANIFEST_FLAGS_H_
|