mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
ef16d7558f
This adds two properties: * scte-35-pid: If not 0, enables the SCTE-35 support for the current program. This will write the proper PMT and send SCTE-35 NULL commands (i.e. heartbeats) at a regular interval * scte-35-null-interval: This specifies the interval at which the NULL commands should be sent Sending SCTE-35 commands is done by creating the appropriate SCTE-35 GstMpegtsSection and then sending them on the muxer. See the associated example
11 lines
335 B
Meson
11 lines
335 B
Meson
foreach fname : ['ts-parser.c', 'ts-section-writer.c', 'ts-scte-writer.c']
|
|
exe_name = fname.split('.').get(0).underscorify()
|
|
|
|
executable(exe_name,
|
|
fname,
|
|
install: false,
|
|
include_directories : [configinc],
|
|
dependencies : [gstmpegts_dep],
|
|
c_args : ['-DHAVE_CONFIG_H=1', '-DGST_USE_UNSTABLE_API' ],
|
|
)
|
|
endforeach
|