Shaka Packager SDK
Loading...
Searching...
No Matches
mpd_options.h
1// Copyright 2014 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 MPD_BASE_MPD_OPTIONS_H_
8#define MPD_BASE_MPD_OPTIONS_H_
9
10
11#include <packager/mpd_params.h>
12
13namespace shaka {
14
15enum class DashProfile {
16 kUnknown,
17 kOnDemand,
18 kLive,
19};
20
21enum class MpdType { kStatic, kDynamic };
22
24struct MpdOptions {
25 DashProfile dash_profile = DashProfile::kOnDemand;
26 MpdType mpd_type = MpdType::kStatic;
27 MpdParams mpd_params;
28};
29
30} // namespace shaka
31
32#endif // MPD_BASE_MPD_OPTIONS_H_
All the methods that are virtual are virtual for mocking.
Defines Mpd Options.
Definition mpd_options.h:24