2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2014-01-16 00:52:07 +00:00
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/base/muxer_options.h"
|
2014-01-16 00:52:07 +00:00
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
namespace edash_packager {
|
2014-01-16 00:52:07 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
MuxerOptions::MuxerOptions()
|
|
|
|
: single_segment(false),
|
|
|
|
segment_duration(0),
|
|
|
|
fragment_duration(0),
|
|
|
|
segment_sap_aligned(false),
|
|
|
|
fragment_sap_aligned(false),
|
2014-06-27 23:07:36 +00:00
|
|
|
num_subsegments_per_sidx(0),
|
|
|
|
bandwidth(0) {}
|
2014-01-16 00:52:07 +00:00
|
|
|
MuxerOptions::~MuxerOptions() {}
|
|
|
|
|
|
|
|
} // namespace media
|
2014-09-19 20:41:13 +00:00
|
|
|
} // namespace edash_packager
|