mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
28 lines
702 B
Meson
28 lines
702 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,
|
|
)
|
|
plugins += [gstvideoparsersbad]
|