mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
5542dd395d
Now it uses the JPEG parser in libgstcodecparsers, while the whole code is simplified by relying more in baseparser class for tag handling. The element now signals chroma-format and default framerate is 0/1, which is for still-images. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1473>
16 lines
480 B
Meson
16 lines
480 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, gstvideo_dep, gsttag_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstjpegformat, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstjpegformat]
|