gstreamer/gst/videoparsers/meson.build
He Junyan fe19bc0a2e videoparsers: av1: Add the AV1 parse.
This AV1 parse implements the conversion between alignment of obu,
tu and frame, and the conversion between stream-format of obu-stream
and annexb.

TODO:
1. May need a property of operating_point to filter the OBUs
2. May add a property to disable deep parse.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1614>
2021-01-19 18:38:03 +00:00

29 lines
756 B
Meson

vparse_sources = [
'plugin.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]