design/overview: drop manual padding from figures that had it

Be consistent.
This commit is contained in:
Reynaldo H. Verdejo Pinochet 2016-12-19 13:45:39 -08:00
parent 6c796a4438
commit e604cc710d

View file

@ -27,17 +27,17 @@ GStreamer. An application links elements together on pads to construct a
pipeline. Below is an example of an ogg/vorbis playback pipeline. pipeline. Below is an example of an ogg/vorbis playback pipeline.
``` ```
+-----------------------------------------------------------+ +-----------------------------------------------------------+
| ----------> downstream -------------------> | | ----------> downstream -------------------> |
| | | |
| pipeline | | pipeline |
| +---------+ +----------+ +-----------+ +----------+ | | +---------+ +----------+ +-----------+ +----------+ |
| | filesrc | | oggdemux | | vorbisdec | | alsasink | | | | filesrc | | oggdemux | | vorbisdec | | alsasink | |
| | src-sink src-sink src-sink | | | | src-sink src-sink src-sink | |
| +---------+ +----------+ +-----------+ +----------+ | | +---------+ +----------+ +-----------+ +----------+ |
| | | |
| <---------< upstream <-------------------< | | <---------< upstream <-------------------< |
+-----------------------------------------------------------+ +-----------------------------------------------------------+
``` ```
The filesrc element reads data from a file on disk. The oggdemux element The filesrc element reads data from a file on disk. The oggdemux element
@ -298,13 +298,13 @@ Below is a simple mp3 playback pipeline that we constructed. We will use
this pipeline in further examples. this pipeline in further examples.
``` ```
+-------------------------------------------+ +-------------------------------------------+
| pipeline | | pipeline |
| +---------+ +----------+ +----------+ | | +---------+ +----------+ +----------+ |
| | filesrc | | mp3dec | | alsasink | | | | filesrc | | mp3dec | | alsasink | |
| | src-sink src-sink | | | | src-sink src-sink | |
| +---------+ +----------+ +----------+ | | +---------+ +----------+ +----------+ |
+-------------------------------------------+ +-------------------------------------------+
``` ```
## Pipeline clock ## Pipeline clock