From a99d3f8769ed3fd1266d5216ecefebfd1bdcf663 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 28 Jan 2009 12:29:42 +0200 Subject: Update and add documentation for plugins with no deps (gst). Link to properties. Correct titles for examples. Document a few trivial cases. Keep lists in section file and docs/plugins/Makefile.am alphabetically ordered. --- gst/law/alaw-decode.c | 5 +++++ gst/law/alaw-encode.c | 5 +++++ gst/law/mulaw-decode.c | 5 +++++ gst/law/mulaw-encode.c | 5 +++++ gst/law/mulaw.c | 18 ++++++++++++++++++ 5 files changed, 38 insertions(+) (limited to 'gst/law') diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c index 6db91cfd..9b990f7e 100644 --- a/gst/law/alaw-decode.c +++ b/gst/law/alaw-decode.c @@ -16,6 +16,11 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-alawdec + * + * This element decodes alaw audio. Alaw coding is also known as G.711. + */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/gst/law/alaw-encode.c b/gst/law/alaw-encode.c index 0a025fa2..ba8587a2 100644 --- a/gst/law/alaw-encode.c +++ b/gst/law/alaw-encode.c @@ -16,6 +16,11 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-alawenc + * + * This element encode alaw audio. Alaw coding is also known as G.711. + */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c index fb40f18b..42b208f6 100644 --- a/gst/law/mulaw-decode.c +++ b/gst/law/mulaw-decode.c @@ -16,6 +16,11 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-mulawdec + * + * This element decodes mulaw audio. Mulaw coding is also known as G.711. + */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/gst/law/mulaw-encode.c b/gst/law/mulaw-encode.c index c8c8c054..f60e0b2e 100644 --- a/gst/law/mulaw-encode.c +++ b/gst/law/mulaw-encode.c @@ -16,6 +16,11 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-mulawenc + * + * This element encode mulaw audio. Mulaw coding is also known as G.711. + */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/gst/law/mulaw.c b/gst/law/mulaw.c index 8945a101..3317e58f 100644 --- a/gst/law/mulaw.c +++ b/gst/law/mulaw.c @@ -1,3 +1,21 @@ +/* GStreamer PCM/A-Law conversions + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif -- cgit