gstreamer/subprojects/gst-plugins-bad/ext/codec2json/meson.build
Benjamin Gaignard 16ad80179b codec2json: Add av12json element
This element convert AV1 frame header into human readable
json data.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3734>
2023-01-30 19:46:55 +00:00

29 lines
753 B
Meson

codec2json_sources = files([
'gstav12json.c',
'gstvp82json.c',
'plugin.c',
])
cp_args = [
'-DGST_USE_UNSTABLE_API',
'-DBUILDING_GST_CODECS',
'-DG_LOG_DOMAIN="GStreamer-Codec2json"'
]
json_dep = dependency('json-glib-1.0', version : '>=1.6.6', fallback : ['json-glib', 'json_glib_dep'], required: get_option('codec2json'))
if json_dep.found()
gstcodec2json = library('gstcodec2json',
codec2json_sources,
c_args : gst_plugins_bad_args + cp_args,
include_directories : [configinc],
version : libversion,
soversion : soversion,
darwin_versions : osxversion,
install : true,
install_dir : plugins_install_dir,
dependencies : [gstvideo_dep, gstcodecs_dep, json_dep],
)
plugins += [gstcodec2json]
endif