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

« back to all changes in this revision

Viewing changes to gst/rtp/gstrtpgsmpay.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:
43
43
    );
44
44
 
45
45
static GstStaticPadTemplate gst_rtp_gsm_pay_src_template =
46
 
GST_STATIC_PAD_TEMPLATE ("src",
 
46
    GST_STATIC_PAD_TEMPLATE ("src",
47
47
    GST_PAD_SRC,
48
48
    GST_PAD_ALWAYS,
49
49
    GST_STATIC_CAPS ("application/x-rtp, "
50
50
        "media = (string) \"audio\", "
51
51
        "payload = (int) " GST_RTP_PAYLOAD_GSM_STRING ", "
 
52
        "clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"; "
 
53
        "application/x-rtp, "
 
54
        "media = (string) \"audio\", "
 
55
        "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
52
56
        "clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
53
57
    );
54
58