DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations 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 #include "packager/media/public/mp4_output_params.h"
15 
16 namespace shaka {
17 namespace media {
18 
20 struct MuxerOptions {
21  MuxerOptions();
22  ~MuxerOptions();
23 
26 
30  std::string output_file_name;
31 
36  std::string segment_template;
37 
39  std::string temp_dir;
40 
43  uint32_t bandwidth = 0;
44 };
45 
46 } // namespace media
47 } // namespace shaka
48 
49 #endif // MEDIA_BASE_MUXER_OPTIONS_H_
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:20
MP4 (ISO-BMFF) output related parameters.
Mp4OutputParams mp4_params
MP4 (ISO-BMFF) specific parameters.
Definition: muxer_options.h:25
std::string temp_dir
Specify temporary directory for intermediate files.
Definition: muxer_options.h:39