summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Jimenez Moreno <fjimenez@igalia.com>2021-05-04 12:13:44 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-06-02 09:03:10 +0000
commit883a6601986d65b3d9ca53b54832258346628824 (patch)
treee01fecf6d751539ef98b32883e10c168869fc19d
parentb87ed30b7b62a14d602744f977b690c49a82e231 (diff)
basics/elements: Correct allowed actions in PAUSED state
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/156>
-rw-r--r--markdown/application-development/basics/elements.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/application-development/basics/elements.md b/markdown/application-development/basics/elements.md
index a9c071e..74e1eaf 100644
--- a/markdown/application-development/basics/elements.md
+++ b/markdown/application-development/basics/elements.md
@@ -413,7 +413,7 @@ Those four states are:
- `GST_STATE_PAUSED`: in this state, an element has opened the stream,
but is not actively processing it. An element is allowed to modify a
stream's position, read and process data and such to prepare for
- playback as soon as state is changed to PLAYING, but it is *not*
+ playback as soon as state is changed to PAUSED, but it is *not*
allowed to play the data which would make the clock run. In summary,
PAUSED is the same as PLAYING but without a running clock.