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

« back to all changes in this revision

Viewing changes to gst/rtp/gstrtpspeexdepay.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:
27
27
 
28
28
/* elementfactory information */
29
29
static const GstElementDetails gst_rtp_speexdepay_details =
30
 
GST_ELEMENT_DETAILS ("RTP packet parser",
31
 
    "Codec/Depayr/Network",
 
30
GST_ELEMENT_DETAILS ("RTP packet depayloader",
 
31
    "Codec/Depayloader/Network",
32
32
    "Extracts Speex audio from RTP packets",
33
33
    "Edgard Lima <edgard.lima@indt.org.br>");
34
34
 
144
144
gst_rtp_speex_depay_plugin_init (GstPlugin * plugin)
145
145
{
146
146
  return gst_element_register (plugin, "rtpspeexdepay",
147
 
      GST_RANK_NONE, GST_TYPE_RTP_SPEEX_DEPAY);
 
147
      GST_RANK_MARGINAL, GST_TYPE_RTP_SPEEX_DEPAY);
148
148
}