DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
muxer_options.h
1 // Copyright 2014 Google Inc. 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 MEDIA_BASE_MUXER_OPTIONS_H_
8 #define MEDIA_BASE_MUXER_OPTIONS_H_
9 
10 #include <stdint.h>
11 
12 #include <string>
13 
14 namespace edash_packager {
15 namespace media {
16 
18 struct MuxerOptions {
19  MuxerOptions();
20  ~MuxerOptions();
21 
25 
31 
35 
39 
44 
51 
55  std::string output_file_name;
56 
61  std::string segment_template;
62 
67  std::string hls_name;
68 
72  std::string hls_group_id;
73 
75  std::string temp_dir;
76 
79  uint32_t bandwidth;
80 
83 };
84 
85 } // namespace media
86 } // namespace edash_packager
87 
88 #endif // MEDIA_BASE_MUXER_OPTIONS_H_
std::string temp_dir
Specify temporary directory for intermediate files.
Definition: muxer_options.h:75
std::string packager_version_string
Specify the version string to be embedded in the output files.
Definition: muxer_options.h:82
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18