mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
891be51105
Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2110>
29 lines
786 B
Meson
29 lines
786 B
Meson
vparse_sources = [
|
|
'plugin.c',
|
|
'gstvideoparserselement.c',
|
|
'h263parse.c',
|
|
'gsth263parse.c',
|
|
'gstdiracparse.c',
|
|
'dirac_parse.c',
|
|
'gsth264parse.c',
|
|
'gstmpegvideoparse.c',
|
|
'gstmpeg4videoparse.c',
|
|
'gstpngparse.c',
|
|
'gstvc1parse.c',
|
|
'gsth265parse.c',
|
|
'gstvideoparseutils.c',
|
|
'gstjpeg2000parse.c',
|
|
'gstvp9parse.c',
|
|
'gstav1parse.c',
|
|
]
|
|
|
|
gstvideoparsersbad = library('gstvideoparsersbad',
|
|
vparse_sources,
|
|
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
|
|
include_directories : [configinc],
|
|
dependencies : [gstcodecparsers_dep, gstbase_dep, gstpbutils_dep, gstvideo_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstvideoparsersbad, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstvideoparsersbad]
|