2023-12-01 17:32:19 +00:00
|
|
|
// Copyright 2016 Google LLC. All rights reserved.
|
2016-04-16 22:58: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
|
|
|
|
|
|
|
|
#ifndef PACKAGER_APP_HLS_FLAGS_H_
|
|
|
|
#define PACKAGER_APP_HLS_FLAGS_H_
|
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
#include <absl/flags/declare.h>
|
|
|
|
#include <absl/flags/flag.h>
|
2016-04-16 22:58:47 +00:00
|
|
|
|
2023-12-01 17:32:19 +00:00
|
|
|
ABSL_DECLARE_FLAG(std::string, hls_master_playlist_output);
|
|
|
|
ABSL_DECLARE_FLAG(std::string, hls_base_url);
|
|
|
|
ABSL_DECLARE_FLAG(std::string, hls_key_uri);
|
|
|
|
ABSL_DECLARE_FLAG(std::string, hls_playlist_type);
|
|
|
|
ABSL_DECLARE_FLAG(int32_t, hls_media_sequence_number);
|
2024-02-15 20:06:06 +00:00
|
|
|
ABSL_DECLARE_FLAG(std::optional<double>, hls_start_time_offset);
|
2024-10-25 16:55:27 +00:00
|
|
|
ABSL_DECLARE_FLAG(bool, create_session_keys);
|
2016-04-16 22:58:47 +00:00
|
|
|
|
|
|
|
#endif // PACKAGER_APP_HLS_FLAGS_H_
|