2016-08-12 15:51:45 +00:00
|
|
|
jpegf_sources = [
|
|
|
|
'gstjpegformat.c',
|
|
|
|
'gstjpegparse.c',
|
|
|
|
'gstjifmux.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
gstjpegformat = library('gstjpegformat',
|
|
|
|
jpegf_sources,
|
2021-12-22 17:13:17 +00:00
|
|
|
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
|
2016-08-12 15:51:45 +00:00
|
|
|
include_directories : [configinc],
|
2021-12-22 18:23:37 +00:00
|
|
|
dependencies : [gstbase_dep, gstcodecparsers_dep, gstvideo_dep, gsttag_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstjpegformat, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstjpegformat]
|