Merging gst-build
[platform/upstream/gstreamer.git] / README.md
1 # gst-build
2
3 GStreamer [meson](http://mesonbuild.com/) based repositories aggregrator.
4
5 Check out this module and run meson on it, and it will git clone the other
6 GStreamer modules as [meson subprojects](http://mesonbuild.com/Subprojects.html)
7 and build everything in one go. Once that is done you can switch into an
8 development environment which allows you to easily develop and test the latest
9 version of GStreamer without the need to install anything or touch an existing
10 GStreamer system installation.
11
12 ## Getting started
13
14 ### Install git and python 3.5+
15
16 If you're on Linux, you probably already have these. On macOS, you can use the
17 [official Python installer](https://www.python.org/downloads/mac-osx/).
18
19 You can find [instructions for Windows below](#windows-prerequisites-setup).
20
21 ### Install meson and ninja
22
23 Meson 0.52 or newer is required.
24
25 For cross-compilation Meson 0.54 or newer is required.
26
27 On Linux and macOS you can get meson through your package manager or using:
28
29   $ pip3 install --user meson
30
31 This will install meson into `~/.local/bin` which may or may not be included
32 automatically in your PATH by default.
33
34 You should get `ninja` using your package manager or download the [official
35 release](https://github.com/ninja-build/ninja/releases) and put the `ninja`
36 binary in your PATH.
37
38 You can find [instructions for Windows below](#windows-prerequisites-setup).
39
40 ### Build GStreamer and its modules
41
42 You can get all GStreamer built running:
43
44 ```
45 meson builddir
46 ninja -C builddir
47 ```
48
49 This will automatically create the `build` directory and build everything
50 inside it.
51
52 NOTE: On Windows, you *must* run this from [inside the Visual Studio command
53 prompt](#running-meson-on-windows) of the appropriate architecture and version.
54
55 ### External dependencies
56
57 All mandatory dependencies of GStreamer are included as [meson subprojects](https://mesonbuild.com/Subprojects.html):
58 libintl, zlib, libffi, glib. Some optional dependencies are also included as
59 subprojects, such as ffmpeg, x264, json-glib, graphene, openh264, orc, etc.
60
61 Mandatory dependencies will be automatically built if meson cannot find them on
62 your system using pkg-config. The same is true for optional dependencies that
63 are included as subprojects. You can find a full list by looking at the
64 `subprojects` directory.
65
66 Plugins that need optional dependencies that aren't included can only be built
67 if they are provided by the system. Instructions on how to build some common
68 ones such as Qt5/QML are listed below. If you do not know how to provide an
69 optional dependency needed by a plugin, you should use [Cerbero](https://gitlab.freedesktop.org/gstreamer/cerbero/#description)
70 which handles this for you automatically.
71
72 Plugins will be automatically enabled if possible, but you can ensure that
73 a particular plugin (especially if it has external dependencies) is built by
74 enabling the gstreamer repository that ships it and the plugin inside it. For
75 example, to enable the Qt5 plugin in the gst-plugins-good repository, you need
76 to run meson as follows:
77
78 ```
79 meson -Dgood=enabled -Dgst-plugins-good:qt5=enabled builddir
80 ```
81
82 This will cause Meson to error out if the plugin could not be enabled. You can
83 also flip the default and disable all plugins except those explicitly enabled
84 like so:
85
86 ```
87 meson -Dauto_features=disabled -Dgstreamer:tools=enabled -Dbad=enabled -Dgst-plugins-bad:openh264=enabled
88 ```
89
90 This will disable all optional features and then enable the `openh264` plugin
91 and the tools that ship with the core gstreamer repository: `gst-inspect-1.0`,
92 `gst-launch-1.0`, etc. As usual, you can change these values on a builddir that
93 has already been setup with `meson configure -Doption=value`.
94
95 ### Building the Qt5 QML plugin
96
97 If `qmake` is not in `PATH` and pkgconfig files are not available, you can
98 point the `QMAKE` env var to the Qt5 installation of your choosing before
99 running `meson` as shown above.
100
101 The plugin will be automatically enabled if possible, but you can ensure that
102 it is built by passing `-Dgood=enabled -Dgst-plugins-good:qt5=enabled` to `meson`.
103
104 ### Building the Intel MSDK plugin
105
106 On Linux, you need to have development files for `libmfx` installed. On
107 Windows, if you have the [Intel Media SDK](https://software.intel.com/en-us/media-sdk),
108 it will set the `INTELMEDIASDKROOT` environment variable, which will be used by
109 the build files to find `libmfx`.
110
111 The plugin will be automatically enabled if possible, but you can ensure it by
112 passing `-Dbad=enabled -Dgst-plugins-bad:msdk=enabled` to `meson`.
113
114 ### Static build
115
116 Since *1.18.0* when doing a static build using `--default-library=static`, a
117 shared library `gstreamer-full-1.0` will be produced and includes all enabled
118 GStreamer plugins and libraries. A list of libraries that needs to be exposed in
119 `gstreamer-full-1.0` ABI can be set using `gst-full-libraries` option. glib-2.0,
120 gobject-2.0 and gstreamer-1.0 are always included.
121
122 ```
123 meson --default-library=static -Dgst-full-libraries=app,video builddir
124 ```
125
126 GStreamer *1.18* requires applications using gstreamer-full-1.0 to initialize
127 static plugins by calling `gst_init_static_plugins()` after `gst_init()`. That
128 function is defined in `gst/gstinitstaticplugins.h` header file.
129
130 Since *1.20.0* `gst_init_static_plugins()` is called automatically by
131 `gst_init()` and applications must not call it manually any more. The header
132 file has been removed from public API.
133
134 One can use the `gst-full-version-script` option to pass a
135 [version script](https://www.gnu.org/software/gnulib/manual/html_node/LD-Version-Scripts.html)
136 to the linker. This can be used to control the exact symbols that are exported by
137 the gstreamer-full library, allowing the linker to garbage collect unused code
138 and so reduce the total library size. A default script `gstreamer-full-default.map`
139 declares only glib/gstreamer symbols as public.
140
141 One can use the `gst-full-plugins` option to pass a list of plugins to be registered
142 in the gstreamer-full library. The default value is '*' which means that all the plugins selected
143 during the build process will be registered statically. An empty value will prevent any plugins to
144 be registered.
145
146 One can select a specific set of features with `gst-full-elements`, `gst-full-typefind-functions`, `gst-full-device-providers` or `gst-full-dynamic-types` to select specific feature from a plugin.
147 When a feature has been listed in one of those options, the other features from its plugin will no longer be automatically included, even if the plugin is listed in `gst-full-plugins`.
148
149 The user must insure that all selected plugins and features (element, typefind, etc.) have been
150 enabled during the build configuration.
151
152 To register features, the syntax is the following:
153 plugins are separated by ';' and features from a plugin starts after ':' and are ',' separated.
154
155 As an example:
156  * `-Dgst-full-plugins=coreelements;playback;typefindfunctions;alsa;pbtypes`: enable only `coreelements`, `playback`, `typefindfunctions`, `alsa`, `pbtypes` plugins.
157  * `-Dgst-full-elements=coreelements:filesrc,fakesink,identity;alsa:alsasrc`: enable only `filesrc`, `identity` and `fakesink` elements from `coreelements` and `alsasrc` element from `alsa` plugin.
158  * `-Dgst-full-typefind-functions=typefindfunctions:wav,flv`: enable only typefind func `wav` and `flv` from `typefindfunctions`
159  * `-Dgst-full-device-providers=alsa:alsadeviceprovider`: enable `alsadeviceprovider` from `alsa`.
160  * `-Dgst-full-dynamic-types=pbtypes:video_multiview_flagset`:  enable `video_multiview_flagset` from `pbtypes
161
162 All features from the `playback` plugin will be enabled and the other plugins will be restricted to the specific features requested.
163
164 All the selected features will be registered into a dedicated `NULL` plugin name.
165
166 This will cause the features/plugins that are not registered to not be included in the final gstreamer-full library.
167
168 This is an experimental feature, backward uncompatible changes could still be
169 made in the future.
170
171 # Development environment
172
173 ## Development environment target
174
175 gst-build also contains a special `devenv` target that lets you enter an
176 development environment where you will be able to work on GStreamer
177 easily. You can get into that environment running:
178
179 ```
180 ninja -C builddir devenv
181 ```
182
183 If your operating system handles symlinks, built modules source code will be
184 available at the root of `gst-build/` for example GStreamer core will be in
185 `gstreamer/`. Otherwise they will be present in `subprojects/`. You can simply
186 hack in there and to rebuild you just need to rerun `ninja -C builddir`.
187
188 NOTE: In the development environment, a fully usable prefix is also configured
189 in `gst-build/prefix` where you can install any extra dependency/project.
190
191 An external script can be run in development environment with:
192
193 ```
194 ./gst-env.py external_script.sh
195 ```
196
197 ## Update git subprojects
198
199 We added a special `update` target to update subprojects (it uses `git pull
200 --rebase` meaning you should always make sure the branches you work on are
201 following the right upstream branch, you can set it with `git branch
202 --set-upstream-to origin/master` if you are working on `gst-build` master
203 branch).
204
205 Update all GStreamer modules and rebuild:
206
207 ```
208 ninja -C builddir update
209 ```
210
211 Update all GStreamer modules without rebuilding:
212
213 ```
214 ninja -C builddir git-update
215 ```
216
217 ## Custom subprojects
218
219 We also added a meson option, `custom_subprojects`, that allows the user
220 to provide a comma-separated list of subprojects that should be built
221 alongside the default ones.
222
223 To use it:
224
225 ```
226 cd subprojects
227 git clone my_subproject
228 cd ../build
229 rm -rf * && meson .. -Dcustom_subprojects=my_subproject
230 ninja
231 ```
232
233 ## Run tests
234
235 You can easily run the test of all the components:
236
237 ```
238 meson test -C build
239 ```
240
241 To list all available tests:
242
243 ```
244 meson test -C builddir --list
245 ```
246
247 To run all the tests of a specific component:
248
249 ```
250 meson test -C builddir --suite gst-plugins-base
251 ```
252
253 Or to run a specific test file:
254
255 ```
256 meson test -C builddir --suite gstreamer gst_gstbuffer
257 ```
258
259 Run a specific test from a specific test file:
260
261 ```
262 GST_CHECKS=test_subbuffer meson test -C builddir --suite gstreamer gst_gstbuffer
263 ```
264
265 ## Optional Installation
266
267 `gst-build` has been created primarily for [development usage](#development-environment-target),
268 but you can also install everything that is built into a predetermined prefix like so:
269
270 ```
271 meson --prefix=/path/to/install/prefix builddir
272 ninja -C builddir
273 meson install -C builddir
274 ```
275
276 Note that the installed files have `RPATH` stripped, so you will need to set
277 `LD_LIBRARY_PATH`, `DYLD_LIBRARY_PATH`, or `PATH` as appropriate for your
278 platform for things to work.
279
280 ## Checkout another branch using worktrees
281
282 If you need to have several versions of GStreamer coexisting (eg. `master` and `1.16`),
283 you can use the `gst-worktree.py` script provided by `gst-build`. It allows you
284 to create a new `gst-build` environment with new checkout of all the GStreamer modules as
285 [git worktrees](https://git-scm.com/docs/git-worktree).
286
287 For example to get a fresh checkout of `gst-1.16` from a `gst-build` repository
288 that is checked out at master, you can run:
289
290 ```
291 ./gst-worktree.py add gst-build-1.16 origin/1.16
292 ```
293
294 This will create a new ``gst-build-1.16`` directory pointing to the given branch `1.16`
295 for all the subprojects (gstreamer, gst-plugins-base, etc.)
296
297
298 ## Add information about GStreamer development environment in your prompt line
299
300 ### Bash prompt
301
302 We automatically handle `bash` and set `$PS1` accordingly.
303
304 If the automatic `$PS1` override is not desired (maybe you have a fancy custom prompt), set the `$GST_BUILD_DISABLE_PS1_OVERRIDE` environment variable to `TRUE` and use `$GST_ENV` when setting the custom prompt, for example with a snippet like the following:
305
306 ```bash
307 ...
308 if [[ -n "${GST_ENV-}" ]];
309 then
310   PS1+="[ ${GST_ENV} ]"
311 fi
312 ...
313 ```
314
315 ### Using powerline
316
317 In your powerline theme configuration file (by default in
318 `{POWERLINE INSTALLATION DIR}/config_files/themes/shell/default.json`)
319 you should add a new environment segment as follow:
320
321 ```
322 {
323   "function": "powerline.segments.common.env.environment",
324   "args": { "variable": "GST_ENV" },
325   "priority": 50
326 },
327 ```
328
329 ## Windows Prerequisites Setup
330
331 On Windows, some of the components may require special care.
332
333 ### Git for Windows
334
335 Use the [Git for Windows](https://gitforwindows.org/) installer. It will
336 install a `bash` prompt with basic shell utils and up-to-date git binaries.
337
338 During installation, when prompted about `PATH`, you should select the
339 following option:
340
341 ![Select "Git from the command line and also from 3rd-party software"](/data/images/git-installer-PATH.png)
342
343 ### Python 3.5+ on Windows
344
345 Use the [official Python installer](https://www.python.org/downloads/windows/).
346 You must ensure that Python is installed into `PATH`:
347
348 ![Enable Add Python to PATH, then click Customize Installation](/data/images/py-installer-page1.png)
349
350 You may also want to customize the installation and install it into
351 a system-wide location such as `C:\PythonXY`, but this is not required.
352
353 ### Ninja on Windows
354
355 The easiest way to install Ninja on Windows is with `pip3`, which will download
356 the compiled binary and place it into the `Scripts` directory inside your
357 Python installation:
358
359 ```
360 pip3 install ninja
361 ```
362
363 You can also download the [official release](https://github.com/ninja-build/ninja/releases)
364 and place it into `PATH`.
365
366 ### Meson on Windows
367
368 **IMPORTANT**: Do not use the Meson MSI installer since it is experimental and known to not
369 work with `gst-build`.
370
371 You can use `pip3` to install Meson, same as Ninja above:
372
373 ```
374 pip3 install meson
375 ```
376
377 Note that Meson is written entirely in Python, so you can also run it as-is
378 from the [git repository](https://github.com/mesonbuild/meson/) if you want to
379 use the latest master branch for some reason.
380
381 **ARM64 native only**: You might need
382 [native upstream ARM64 support fix](https://github.com/mesonbuild/meson/pull/7432)
383 which is expected to be a part of Meson 0.55.1.
384 If your Meson package version which was installed via `pip3` is lower than 0.55.1,
385 then you need to use [the latest master branch](https://github.com/mesonbuild/meson/).
386
387 ### Running Meson on Windows
388
389 At present, to build with Visual Studio, you need to run Meson from inside the
390 VS 2019 command prompt. Press `Start`, and search for `VS 2019`, and click on
391 `x64 Native Tools Command Prompt for VS 2019`, or a prompt named similar to
392 that:
393
394 ![x64 Native Tools Command Prompt for VS 2019](/data/images/vs-2019-dev-prompt.png)
395
396 **ARM64 native only**: Since Visual Studio might not install dedicated command
397 prompt for native ARM64 build, you might need to run `vcvarsx86_arm64.bat` on CMD.
398 Please refer to [this document](https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line?view=vs-2019#developer_command_file_locations)
399
400 ### Setup a mingw/wine based development environment on linux
401
402 #### Install wine and mingw
403
404 ##### On fedora x64
405
406 ``` sh
407 sudo dnf install mingw64-gcc mingw64-gcc-c++ mingw64-pkg-config mingw64-winpthreads wine
408 ```
409
410 FIXME: Figure out what needs to be installed on other distros
411
412 #### Get meson from git
413
414 This simplifies the process and allows us to use the cross files
415 defined in meson itself.
416
417 ``` sh
418 git clone https://github.com/mesonbuild/meson.git
419 ```
420
421 #### Build and install
422
423 ```
424 BUILDDIR=$PWD/winebuild/
425 export WINEPREFIX=$BUILDDIR/wine-prefix/ && mkdir -p $WINEPREFIX
426 # Setting the prefix is mandatory as it is used to setup symlinks during uninstalled development
427 meson/meson.py $BUILDDIR --cross-file meson/cross/linux-mingw-w64-64bit.txt -Dgst-plugins-bad:vulkan=disabled -Dorc:gtk_doc=disabled --prefix=$BUILDDIR/wininstall/ -Djson-glib:gtk_doc=disabled
428 meson/meson.py install -C $BUILDDIR/
429 ```
430
431 > __NOTE__: You should use `meson install -C $BUILDDIR`  each time you make a change
432 > instead of the usual `ninja -C build` as the environment is not uninstalled.
433
434 #### The development environment
435
436 You can get into the development environment the usual way:
437
438 ```
439 ninja -C $BUILDDIR/ devenv
440 ```
441
442 Alternatively, if you'd rather not start a shell in your workflow, you
443 can mutate the current environment into a suitable state like so:
444
445 ```
446 gst-env.py --only-environment
447 ```
448
449 This will print output suitable for an sh-compatible `eval` function,
450 just like `ssh-agent -s`.
451
452 After setting up [binfmt] to use wine for windows binaries,
453 you can run GStreamer tools under wine by running:
454
455 ```
456 gst-launch-1.0.exe videotestsrc ! glimagesink
457 ```
458
459 [binfmt]: http://man7.org/linux/man-pages/man5/binfmt.d.5.html