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-15 22:44:11 +00:00
|
|
|
//
|
|
|
|
// Defines Muxer flags.
|
|
|
|
|
|
|
|
#ifndef APP_MUXER_FLAGS_H_
|
|
|
|
#define APP_MUXER_FLAGS_H_
|
|
|
|
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
|
2014-05-08 21:02:36 +00:00
|
|
|
DECLARE_double(clear_lead);
|
|
|
|
DECLARE_double(segment_duration);
|
|
|
|
DECLARE_bool(segment_sap_aligned);
|
|
|
|
DECLARE_double(fragment_duration);
|
|
|
|
DECLARE_bool(fragment_sap_aligned);
|
2018-06-15 18:59:02 +00:00
|
|
|
DECLARE_bool(generate_sidx_in_media_segments);
|
2014-05-08 21:02:36 +00:00
|
|
|
DECLARE_string(temp_dir);
|
2017-03-15 19:42:00 +00:00
|
|
|
DECLARE_bool(mp4_include_pssh_in_stream);
|
2018-07-03 23:52:05 +00:00
|
|
|
DECLARE_int32(transport_stream_timestamp_offset_ms);
|
2014-01-15 22:44:11 +00:00
|
|
|
|
|
|
|
#endif // APP_MUXER_FLAGS_H_
|