~ubuntu-branches/ubuntu/feisty/gst-plugins-good0.10/feisty-security

« back to all changes in this revision

Viewing changes to sys/oss/gstosssrc.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-12-21 21:12:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061221211215-3uukkusokhe0nk4f
Tags: 0.10.5-0ubuntu1
* Sync with pkg-gstreamer SVN:
  + debian/rules:
    - Use Ubuntu as distribution name and point to the proper Launchpad URL
  + debian/patches/01_esdsink-priority.patch:
    - Mark the esdsink with rank primary-2 to get
      pulse > alsadmix > esd > alsa > oss

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Boston, MA 02111-1307, USA.
21
21
 */
22
22
 
 
23
/**
 
24
 * SECTION:element-osssrc
 
25
 * @short_description: record sound from your sound card using OSS
 
26
 *
 
27
 * <refsect2>
 
28
 * <para>
 
29
 * This element lets you record sound using the Open Sound System (OSS).
 
30
 * </para>
 
31
 * <title>Example pipelines</title>
 
32
 * <para>
 
33
 * <programlisting>
 
34
 * gst-launch -v osssrc ! audioconvert ! vorbisenc ! oggmux ! filesink location=mymusic.ogg
 
35
 * </programlisting>
 
36
 * will record sound from your sound card using OSS and encode it to an
 
37
 * Ogg/Vorbis file (this will only work if your mixer settings are right
 
38
 * and the right inputs enabled etc.)
 
39
 * </para>
 
40
 * </refsect2>
 
41
 */
 
42
 
23
43
#ifdef HAVE_CONFIG_H
24
44
#include "config.h"
25
45
#endif