mirror of https://github.com/intel/libva-utils.git
meson: add missing samples
This commit is contained in:
parent
337669666d
commit
f7f23fe825
|
@ -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)
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
executable('avcstreamoutdemo', [ 'avcstreamoutdemo.c' ],
|
||||
dependencies: libva_display_dep,
|
||||
install: true)
|
|
@ -0,0 +1,5 @@
|
|||
if use_drm
|
||||
executable('sfcsample', [ 'TestMain.cpp', 'VDecAccelVA.cpp' ],
|
||||
dependencies: libva_display_dep,
|
||||
install: true)
|
||||
endif
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue