gstreamer/sys/v4l2/meson.build
Ayaka 27310365d5 v4l2: Add Video Encoder support
This implements H264 encoding support using generic V4L2 interface. It is
reported to work with Samsung MFC driver, IXM.6 CODA driver and
Qualcomm mainline Venus driver. Other platform should be supported as
none of this work is platform specific.

The implementation consist of a GstV4l2VideoEnc base class, which
implements the core streaming functionality. This base class is implemented
by GstV4l2H264Enc class that implements the caps negotiation specific to
H264 profiles and level. This implementation supports hardware with multiple
H264 encoder. Though, to make it simplier to use, the first discovered H264
encoder will be named v4l2h264enc. Other encoder found during discovery will
have a unique name like v4l2video0h264enc.

This work is the combined work of multiple developpers in the last 3
years. Thanks to all of the contributors:

  Ayaka <ayaka@soulik.info>
  Frédéric Sureau <frederic.sureau@vodalys.com>
  Jean-Michel Hautbois <jean-michel.hautbois@veo-labs.com>
  Nicolas Dufresne <nicolas.dufresne@collabora.com>
  Pablo Anton <pablo.anton@vodalys-labs.com>

https://bugzilla.gnome.org/show_bug.cgi?id=728438
2017-05-24 14:00:22 -04:00

50 lines
1.4 KiB
Meson

v4l2_sources = [
'gstv4l2.c',
'gstv4l2allocator.c',
'gstv4l2colorbalance.c',
'gstv4l2deviceprovider.c',
'gstv4l2object.c',
'gstv4l2bufferpool.c',
'gstv4l2sink.c',
'gstv4l2src.c',
'gstv4l2radio.c',
'gstv4l2tuner.c',
'gstv4l2transform.c',
'gstv4l2videodec.c',
'gstv4l2videoenc.c',
'gstv4l2h264enc.c',
'gstv4l2vidorient.c',
'v4l2_calls.c',
'v4l2-utils.c',
'tuner.c',
'tunerchannel.c',
'tunernorm.c'
]
cdata.set('GST_V4L2_ENABLE_PROBE', get_option('v4l2-probe'))
if cc.has_header('linux/videodev2.h') or cc.has_header('sys/videodev2.h') or cc.has_header('sys/videoio.h')
message('building v4l2 plugin')
cdata.set('HAVE_GST_V4L2', true)
gudev_dep = dependency('gudev-1.0', version : '>=147', required : false)
cdata.set('HAVE_GUDEV', gudev_dep.found())
# libv4l2 is only needed for converting some obscure formats
# FIXME: Add a full list of the formats here
if get_option('with-libv4l2')
libv4l2_dep = dependency('libv4l2', required : false)
cdata.set('HAVE_LIBV4L2', libv4l2_dep.found())
libv4l2_deps = [libv4l2_dep]
else
libv4l2_deps = []
endif
gstv4l2 = library('gstvideo4linux2',
v4l2_sources,
c_args : gst_plugins_good_args,
include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, gstvideo_dep, gstallocators_dep, gudev_dep] + libv4l2_deps,
install : true,
install_dir : plugins_install_dir,
)
endif