gstreamer/subprojects/gst-plugins-bad/gst/jpegformat/meson.build
Víctor Manuel Jáquez Leal 17046fc1ad jpegformat: Use codecparsers' for JPEG markers.
Instead of repeating JPEG markers definition, this patch uses those
defined in gstcodecparsers library.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1473>
2022-05-20 08:51:23 +00:00

16 lines
466 B
Meson

jpegf_sources = [
'gstjpegformat.c',
'gstjpegparse.c',
'gstjifmux.c',
]
gstjpegformat = library('gstjpegformat',
jpegf_sources,
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
include_directories : [configinc],
dependencies : [gstbase_dep, gstcodecparsers_dep, gsttag_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstjpegformat, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstjpegformat]