Shaka Packager SDK
hls_flags.h
1 // Copyright 2016 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 #ifndef PACKAGER_APP_HLS_FLAGS_H_
8 #define PACKAGER_APP_HLS_FLAGS_H_
9 
10 #include <absl/flags/declare.h>
11 #include <absl/flags/flag.h>
12 
13 ABSL_DECLARE_FLAG(std::string, hls_master_playlist_output);
14 ABSL_DECLARE_FLAG(std::string, hls_base_url);
15 ABSL_DECLARE_FLAG(std::string, hls_key_uri);
16 ABSL_DECLARE_FLAG(std::string, hls_playlist_type);
17 ABSL_DECLARE_FLAG(int32_t, hls_media_sequence_number);
18 ABSL_DECLARE_FLAG(std::optional<double>, hls_start_time_offset);
19 ABSL_DECLARE_FLAG(bool, create_session_keys);
20 
21 #endif // PACKAGER_APP_HLS_FLAGS_H_