DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
muxer_options.cc
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 #include "packager/media/base/muxer_options.h"
8 #include "packager/version/version.h"
9 
10 namespace edash_packager {
11 namespace media {
12 
13 MuxerOptions::MuxerOptions()
14  : single_segment(false),
15  segment_duration(0),
16  fragment_duration(0),
17  segment_sap_aligned(false),
18  fragment_sap_aligned(false),
19  num_subsegments_per_sidx(0),
20  bandwidth(0),
21  packager_version_string(kPackagerVersion) {}
22 MuxerOptions::~MuxerOptions() {}
23 
24 } // namespace media
25 } // namespace edash_packager