markdown: Fix typo in docs

https://bugzilla.gnome.org/show_bug.cgi?id=797129
This commit is contained in:
H1Gdev 2018-09-12 16:18:12 +09:00 committed by Sebastian Dröge
parent 23b989838d
commit 9f622daacb
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ We will now look at some examples in the next sections.
```
.----------. .----------.
| faksesrc | | fakesink |
| fakesrc | | fakesink |
| src->sink |
'----------' '----------'
@ -90,12 +90,12 @@ this:
- Alternatively, since the sync message is called in the thread
context, you can use thread `ENTER`/`LEAVE` notifications to change the
priority or scheduling pollicy of the current thread.
priority or scheduling policy of the current thread.
In a first step we need to implement a custom `GstTaskPool` that we can
configure on the task. Below is the implementation of a `GstTaskPool`
subclass that uses pthreads to create a `SCHED_RR` real-time thread. Note
that creating real-time threads might require extra priveleges.
that creating real-time threads might require extra privileges.
``` c
#include <pthread.h>

View file

@ -195,7 +195,7 @@ audio_source = gst_element_factory_make ("audiotestsrc", "audio_source");
tee = gst_element_factory_make ("tee", "tee");
audio_queue = gst_element_factory_make ("queue", "audio_queue");
audio_convert = gst_element_factory_make ("audioconvert", "audio_convert");
audio_resample = gst_element_factory_make ("audioresample", "audio_resample");
audio_resample = gst_element_factory_make ("audioresample", "audio_resample");
audio_sink = gst_element_factory_make ("autoaudiosink", "audio_sink");
video_queue = gst_element_factory_make ("queue", "video_queue");
visual = gst_element_factory_make ("wavescope", "visual");