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

« back to all changes in this revision

Viewing changes to gst/rtp/gstrtpmp4vdepay.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:
28
28
 
29
29
/* elementfactory information */
30
30
static const GstElementDetails gst_rtp_mp4vdepay_details =
31
 
GST_ELEMENT_DETAILS ("RTP packet parser",
32
 
    "Codec/Depayr/Network",
 
31
GST_ELEMENT_DETAILS ("RTP packet depayloader",
 
32
    "Codec/Depayloader/Network",
33
33
    "Extracts MPEG4 video from RTP packets (RFC 3016)",
34
34
    "Wim Taymans <wim@fluendo.com>");
35
35
 
111
111
 
112
112
  gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
113
113
 
114
 
  parent_class = g_type_class_peek_parent (klass);
115
 
 
116
114
  gstbasertpdepayload_class->process = gst_rtp_mp4v_depay_process;
117
115
  gstbasertpdepayload_class->set_caps = gst_rtp_mp4v_depay_setcaps;
118
116
 
304
302
gst_rtp_mp4v_depay_plugin_init (GstPlugin * plugin)
305
303
{
306
304
  return gst_element_register (plugin, "rtpmp4vdepay",
307
 
      GST_RANK_NONE, GST_TYPE_RTP_MP4V_DEPAY);
 
305
      GST_RANK_MARGINAL, GST_TYPE_RTP_MP4V_DEPAY);
308
306
}