summaryrefslogtreecommitdiff
path: root/gst/codecalpha/meson.build
blob: fbde4cbf60a85e572eb6e1c9a81661c95f166b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
codecalpha_sources = [
  'gstplugin.c',
  'gstalphacombine.c',
  'gstalphadecodebin.c',
  'gstvp8alphadecodebin.c',
  'gstvp9alphadecodebin.c',
  'gstcodecalphademux.c',
]

gstcodecalpha = library('gstcodecalpha',
  codecalpha_sources,
  c_args : gst_plugins_bad_args,
  include_directories : [configinc],
  dependencies : [gstvideo_dep, gstpbutils_dep],
  install : true,
  install_dir : plugins_install_dir,
)
pkgconfig.generate(gstcodecalpha, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstcodecalpha]