GStreamer multimedia framework
Go to file
2019-05-13 16:34:00 -04:00
examples Pass our C files to gst-indent 2019-04-24 22:47:20 +00:00
images Build GStreamer modules API documentation as part of our build 2019-05-13 11:39:10 -04:00
markdown Fix link to API documentation 2019-05-13 16:34:00 -04:00
plugins-introspection update for gitlab move 2018-11-03 19:57:32 +11:00
scripts Add a 'release' target to generate a ready to install tarball 2019-05-13 11:39:10 -04:00
theme/extra Build GStreamer modules API documentation as part of our build 2019-05-13 11:39:10 -04:00
.gitignore .gitignore: Adds HTML and backup files 2019-05-03 16:21:49 +02:00
.gitlab-ci.yml CI: Update the deploy image url 2018-11-28 20:49:50 +02:00
.gitmodules Use official hotdoc_lumen_theme instead of building it ourselves 2018-08-27 15:28:26 -03:00
LICENSE.BSD Add licensing information 2018-05-31 21:15:42 +01:00
LICENSE.CC-BY-SA-4.0 Add licensing information 2018-05-31 21:15:42 +01:00
LICENSE.LGPL-2.1 Add licensing information 2018-05-31 21:15:42 +01:00
LICENSE.MIT Add licensing information 2018-05-31 21:15:42 +01:00
LICENSE.OPL Add licensing information 2018-05-31 21:15:42 +01:00
meson.build Make sure to add GStreamer cflags building the doc 2019-05-13 11:39:10 -04:00
meson_options.txt Build GStreamer modules API documentation as part of our build 2019-05-13 11:39:10 -04:00
README.md Update the README with information about API documentation 2019-05-13 16:34:00 -04:00
sitemap.txt Build GStreamer modules API documentation as part of our build 2019-05-13 11:39:10 -04:00
TODO.md Move licensing page over from www module 2016-11-29 10:28:14 +00:00

Introduction

This is a collection of design documents, formerly maintained in various different locations and formats, now grouped together and converted to commonmark.

Contributing

Style

We will follow the commonmark specification.

We should try to follow this style guide, but are still evaluating solutions for stable automatic formatting.

80 columns line width is thus not yet enforced, but strongly suggested.

Build the documentation

Install dependencies

  • Follow hotdoc's installation guide, preferably in a virtualenv.

  • We experimentally use the hotdoc C extension to include functions by name, follow the steps outlined here

Build the portal without the API documentation

meson build
ninja -C build/ GStreamer-doc

And browse it:

gio open build/GStreamer-doc/html/index.html

API documentation

Building the API documentation in the portal implies using gst-build which allows us to aggregate the documentation from all GStreamer modules using the hotdoc subproject feature.

From gst-build:

meson build/
ninja -C build subprojects/gst-docs/GStreamer-doc

And browse the doc:

gio open build/subprojects/gst-docs/GStreamer-doc/html/index.html

You can also generate a release tarball of the portal with:

ninja -C build gst-docs@release

Adding a newly written plugin to the documentation

To add a plugin to the documentation you need to add the given meson target to the plugins list present in each GStreamer module for example:

gst_elements = library('gstcoreelements',
  gst_elements_sources,
  c_args : gst_c_args,
  include_directories : [configinc],
  dependencies : [gobject_dep, glib_dep, gst_dep, gst_base_dep],
  install : true,
  install_dir : plugins_install_dir,
)
plugins += [gst_elements]

Then when rebuilding, the gst_plugins_cache.json file will be updated in the given module and this change should be commited to the git repository.

The plugins documentation is generated exclusively based on that file to avoid needing to have built all plugins to get the documentation generated.

NOTE: When moving plugins from one module to another, the gst_plugins_cache.json from the module where the plugin has been removed should be manually edited to reflect the removal.

Licensing

The content of this module comes from a number of different sources and is licensed in different ways:

Tutorial source code

All tutorial code is licensed under any of the following licenses (your choice):

  • 2-clause BSD license ("simplified BSD license") (LICENSE.BSD)
  • MIT license (LICENSE.MIT)
  • LGPL v2.1 (LICENSE.LGPL-2.1)

This means developers have maximum flexibility and can pick the right license for any derivative work.

Application Developer Manual and Plugin Writer's Guide

These are licensed under the Open Publication License v1.0 (LICENSE.OPL), for historical reasons.

Documentation

Mostly licensed under the Creative Commons CC-BY-SA-4.0 license, but some parts of the documentation may still be licensed differently (e.g. LGPLv2.1) for historical reasons.