mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
830d1595b9
* Expose an actual constructor from caps * Error out in overrides for code that was using the "manual allocation" pattern which only worked by chance. Direct the script writer to the new_from_caps constructor instead. Fixes https://gitlab.freedesktop.org/gstreamer/gst-python/-/issues/47 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1571>
10 lines
360 B
Meson
10 lines
360 B
Meson
pysources = ['Gst.py', 'GstPbutils.py', 'GstVideo.py', 'GstAudio.py']
|
|
install_data(pysources,
|
|
install_dir: pygi_override_dir)
|
|
|
|
gstpython = python.extension_module('_gi_gst',
|
|
sources: ['gstmodule.c'],
|
|
install: true,
|
|
install_dir : pygi_override_dir,
|
|
include_directories : [configinc],
|
|
dependencies : [gst_dep, python_dep, pygobject_dep])
|