mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
25 lines
640 B
Meson
25 lines
640 B
Meson
|
examples = [
|
||
|
'test-vaapisink',
|
||
|
'test-vaapipostproc',
|
||
|
'test-roi',
|
||
|
]
|
||
|
|
||
|
foreach example : examples
|
||
|
executable(example, '@0@.c'.format(example),
|
||
|
c_args : gstreamer_vaapi_args,
|
||
|
include_directories: [configinc, libsinc],
|
||
|
dependencies : [gst_dep, gstvideo_dep],
|
||
|
install: false)
|
||
|
endforeach
|
||
|
|
||
|
executable('test-vaapicontext', 'test-vaapicontext.c',
|
||
|
c_args : gstreamer_vaapi_args,
|
||
|
include_directories: [configinc, libsinc],
|
||
|
dependencies : [ gst_dep,
|
||
|
gstvideo_dep,
|
||
|
libva_dep,
|
||
|
x11_dep,
|
||
|
gtk_dep,
|
||
|
libva_x11_dep ],
|
||
|
install: false)
|