meson: add missing samples

This commit is contained in:
Jan Beich 2019-12-27 04:02:46 +00:00 committed by XinfengZhang
parent 337669666d
commit f7f23fe825
5 changed files with 31 additions and 0 deletions

View File

@ -8,6 +8,9 @@ executable('avcenc', [ 'avcenc.c' ],
executable('h264encode', [ 'h264encode.c' ],
dependencies: [ libva_display_dep, threads, m ],
install: true)
executable('hevcencode', [ 'hevcencode.c' ],
dependencies: [ libva_display_dep, threads, m ],
install: true)
executable('mpeg2vaenc', [ 'mpeg2vaenc.c' ],
dependencies: [ libva_display_dep, threads ],
install: true)

View File

@ -80,6 +80,8 @@ subdir('encode')
subdir('putsurface')
subdir('vainfo')
subdir('videoprocess')
subdir('vendor/intel')
subdir('vendor/intel/sfcsample')
if get_option('tests')
subdir('test')

3
vendor/intel/meson.build vendored Normal file
View File

@ -0,0 +1,3 @@
executable('avcstreamoutdemo', [ 'avcstreamoutdemo.c' ],
dependencies: libva_display_dep,
install: true)

5
vendor/intel/sfcsample/meson.build vendored Normal file
View File

@ -0,0 +1,5 @@
if use_drm
executable('sfcsample', [ 'TestMain.cpp', 'VDecAccelVA.cpp' ],
dependencies: libva_display_dep,
install: true)
endif

View File

@ -1,3 +1,21 @@
executable('vavpp', [ 'vavpp.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppblending', [ 'vppblending.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppchromasitting', [ 'vppchromasitting.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppdenoise', [ 'vppdenoise.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppscaling_csc', [ 'vppscaling_csc.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppscaling_n_out_usrptr', [ 'vppscaling_n_out_usrptr.cpp' ],
dependencies: libva_display_dep,
install: true)
executable('vppsharpness', [ 'vppsharpness.cpp' ],
dependencies: libva_display_dep,
install: true)