mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
4b324da3f4
This is a new simple GstBin that can handle the ges:// uris and will directly expose the srcppads of the tracks present in the timeline.
30 lines
552 B
Meson
30 lines
552 B
Meson
examples = [
|
|
'concatenate',
|
|
'gessrc',
|
|
'simple1',
|
|
'test1',
|
|
'test2',
|
|
'test3',
|
|
'test4',
|
|
'transition',
|
|
'thumbnails',
|
|
'overlays',
|
|
'text_properties',
|
|
'assets',
|
|
'multifilesrc',
|
|
'play_timeline_with_one_clip'
|
|
]
|
|
|
|
# TODO Properly port to Gtk 3
|
|
#
|
|
# if gtk_dep.found()
|
|
# examples = examples + ['ges-ui']
|
|
# endif
|
|
|
|
|
|
foreach example_name : examples
|
|
exe = executable(example_name, '@0@.c'.format(example_name),
|
|
c_args : ges_c_args,
|
|
dependencies : libges_deps + [ges_dep],
|
|
)
|
|
endforeach
|