gstreamer/subprojects/gst-plugins-bad/gst/videoparsers/meson.build
He Junyan b5e4c8b774 h266parse: Add the new h266parse element
TODO: Need to refer to the new ISO/IEC 14496-15 for vvc1 and vvi1's
codec data

Co-authored-by: Zhong Hongcheng <spartazhc@gmail.com>
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5710>
2024-12-20 08:22:31 +08:00

29 lines
722 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',
'gsth266parse.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,
)
plugins += [gstvideoparsersbad]