From 06b9fb646a67df9f468761640ffea24021231c43 Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Wed, 8 Mar 2017 15:42:29 -0800 Subject: [PATCH] design: overview: be explicit about what oggdemux does Improve processing example overview. Drop redundancy while at it. --- markdown/design/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/design/overview.md b/markdown/design/overview.md index 83de17cc21..6e9ba7fc9c 100644 --- a/markdown/design/overview.md +++ b/markdown/design/overview.md @@ -41,7 +41,7 @@ pipeline. Below is an example of an ogg/vorbis playback pipeline. ``` The filesrc element reads data from a file on disk. The oggdemux element -parses the data and sends the compressed audio data to the vorbisdec +demultiplexes the data and sends a compressed audio stream to the vorbisdec element. The vorbisdec element decodes the compressed data and sends it to the alsasink element. The alsasink element sends the samples to the audio card for playback.