rtpmanager: Update codes based on 1.18.4
[platform/upstream/gst-plugins-good.git] / gst / rtpmanager / gstrtpptdemux.h
index 83c6d75..4beae86 100644 (file)
@@ -1,5 +1,5 @@
 /* GStreamer
- * Copyright (C) <2007> Wim Taymans <wim@fluendo.com>
+ * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -13,8 +13,8 @@
  *
  * 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.
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
  */
 
 #ifndef __GST_RTP_PT_DEMUX_H__
@@ -34,11 +34,12 @@ typedef struct _GstRtpPtDemuxPad GstRtpPtDemuxPad;
 
 struct _GstRtpPtDemux
 {
-  GstElement parent;  /**< parent class */
+  GstElement parent;  /*< parent class */
 
-  GstPad *sink;       /**< the sink pad */
-  guint16 last_pt;    /**< pt of the last packet 0xFFFF if none */
-  GSList *srcpads;    /**< a linked list of GstRtpPtDemuxPad objects */
+  GstPad *sink;       /*< the sink pad */
+  guint16 last_pt;    /*< pt of the last packet 0xFFFF if none */
+  GSList *srcpads;    /*< a linked list of GstRtpPtDemuxPad objects */
+  GValue ignored_pts; /*< a GstValueArray of payload types that will not have pads created for */
 };
 
 struct _GstRtpPtDemuxClass
@@ -48,7 +49,7 @@ struct _GstRtpPtDemuxClass
   /* get the caps for pt */
   GstCaps* (*request_pt_map)      (GstRtpPtDemux *demux, guint pt);
 
-  /* signal emmited when a new PT is found from the incoming stream */
+  /* signal emitted when a new PT is found from the incoming stream */
   void     (*new_payload_type)    (GstRtpPtDemux *demux, guint pt, GstPad * pad);
 
   /* signal emitted when the payload type changes */