DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs
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 
9 namespace edash_packager {
10 namespace media {
11 
12 MuxerOptions::MuxerOptions()
13  : single_segment(false),
14  segment_duration(0),
15  fragment_duration(0),
16  segment_sap_aligned(false),
17  fragment_sap_aligned(false),
18  num_subsegments_per_sidx(0),
19  bandwidth(0) {}
20 MuxerOptions::~MuxerOptions() {}
21 
22 } // namespace media
23 } // namespace edash_packager