Shaka Packager SDK
manifest_flags.h
1 // Copyright 2018 Google LLC. 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 // Common flags applicable to both DASH and HLS.
8 
9 #ifndef PACKAGER_APP_MANIFEST_FLAGS_H_
10 #define PACKAGER_APP_MANIFEST_FLAGS_H_
11 
12 #include <absl/flags/declare.h>
13 #include <absl/flags/flag.h>
14 
15 ABSL_DECLARE_FLAG(double, time_shift_buffer_depth);
16 ABSL_DECLARE_FLAG(uint64_t, preserved_segments_outside_live_window);
17 ABSL_DECLARE_FLAG(std::string, default_language);
18 ABSL_DECLARE_FLAG(std::string, default_text_language);
19 ABSL_DECLARE_FLAG(bool, force_cl_index);
20 
21 #endif // PACKAGER_APP_MANIFEST_FLAGS_H_