Shaka Packager SDK
muxer_flags.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 // Defines Muxer flags.
8 
9 #ifndef APP_MUXER_FLAGS_H_
10 #define APP_MUXER_FLAGS_H_
11 
12 #include <gflags/gflags.h>
13 
14 DECLARE_double(clear_lead);
15 DECLARE_double(segment_duration);
16 DECLARE_bool(segment_sap_aligned);
17 DECLARE_double(fragment_duration);
18 DECLARE_bool(fragment_sap_aligned);
19 DECLARE_bool(generate_sidx_in_media_segments);
20 DECLARE_string(temp_dir);
21 DECLARE_bool(mp4_include_pssh_in_stream);
22 DECLARE_int32(transport_stream_timestamp_offset_ms);
23 
24 #endif // APP_MUXER_FLAGS_H_