gstreamer/tests/examples/mpegts/meson.build
Jan Schmidt 0d36dcab4e examples: Add an mpegtsmux example of prog-map usage.
Add an example of how to construct the prog-map structure for
the MPEG-TS muxers and assign streams to programs, and set PCR
and PMT PIDs.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2039>
2021-03-18 15:07:53 +00:00

12 lines
356 B
Meson

foreach fname : ['ts-parser.c', 'ts-section-writer.c', 'ts-scte-writer.c', 'tsmux-prog-map.c']
exe_name = fname.split('.').get(0).underscorify()
executable(exe_name,
fname,
install: false,
include_directories : [configinc],
dependencies : [gstmpegts_dep],
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
)
endforeach