2005-07-14 10:29:30 +00:00
|
|
|
/* GStreamer
|
2011-05-23 20:12:50 +00:00
|
|
|
* Copyright (C) <2005> Philippe Khalaf <burger@speedy.org>
|
2005-07-14 10:29:30 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2005-07-14 10:29:30 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-11 11:24:08 +00:00
|
|
|
#ifndef __GST_RTP_BASE_DEPAYLOAD_H__
|
|
|
|
#define __GST_RTP_BASE_DEPAYLOAD_H__
|
2005-07-14 10:29:30 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/rtp/gstrtpbuffer.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-11-11 11:24:08 +00:00
|
|
|
#define GST_TYPE_RTP_BASE_DEPAYLOAD (gst_rtp_base_depayload_get_type())
|
|
|
|
#define GST_RTP_BASE_DEPAYLOAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayload))
|
|
|
|
#define GST_RTP_BASE_DEPAYLOAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayloadClass))
|
|
|
|
#define GST_RTP_BASE_DEPAYLOAD_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_RTP_BASE_DEPAYLOAD,GstRTPBaseDepayloadClass))
|
|
|
|
#define GST_IS_RTP_BASE_DEPAYLOAD(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_BASE_DEPAYLOAD))
|
|
|
|
#define GST_IS_RTP_BASE_DEPAYLOAD_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_BASE_DEPAYLOAD))
|
2015-05-21 12:59:55 +00:00
|
|
|
#define GST_RTP_BASE_DEPAYLOAD_CAST(obj) ((GstRTPBaseDepayload *)(obj))
|
2011-11-11 11:24:08 +00:00
|
|
|
|
2015-05-21 12:59:55 +00:00
|
|
|
#define GST_RTP_BASE_DEPAYLOAD_SINKPAD(depayload) (GST_RTP_BASE_DEPAYLOAD_CAST (depayload)->sinkpad)
|
|
|
|
#define GST_RTP_BASE_DEPAYLOAD_SRCPAD(depayload) (GST_RTP_BASE_DEPAYLOAD_CAST (depayload)->srcpad)
|
2011-11-11 11:24:08 +00:00
|
|
|
|
|
|
|
typedef struct _GstRTPBaseDepayload GstRTPBaseDepayload;
|
|
|
|
typedef struct _GstRTPBaseDepayloadClass GstRTPBaseDepayloadClass;
|
|
|
|
typedef struct _GstRTPBaseDepayloadPrivate GstRTPBaseDepayloadPrivate;
|
|
|
|
|
|
|
|
struct _GstRTPBaseDepayload
|
2005-07-14 10:29:30 +00:00
|
|
|
{
|
|
|
|
GstElement parent;
|
|
|
|
|
|
|
|
GstPad *sinkpad, *srcpad;
|
|
|
|
|
2005-10-26 13:52:42 +00:00
|
|
|
/* this attribute must be set by the child */
|
2005-07-14 10:29:30 +00:00
|
|
|
guint clock_rate;
|
|
|
|
|
2005-11-30 19:08:14 +00:00
|
|
|
GstSegment segment;
|
|
|
|
gboolean need_newsegment;
|
|
|
|
|
2005-08-09 17:29:40 +00:00
|
|
|
/*< private >*/
|
2011-11-11 11:24:08 +00:00
|
|
|
GstRTPBaseDepayloadPrivate *priv;
|
2007-03-29 16:23:53 +00:00
|
|
|
|
2011-11-11 18:21:09 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2005-07-14 10:29:30 +00:00
|
|
|
};
|
|
|
|
|
2011-05-23 20:12:50 +00:00
|
|
|
/**
|
2011-11-11 11:24:08 +00:00
|
|
|
* GstRTPBaseDepayloadClass:
|
2011-05-23 20:12:50 +00:00
|
|
|
* @parent_class: the parent class
|
|
|
|
* @set_caps: configure the depayloader
|
2018-04-02 06:34:58 +00:00
|
|
|
* @process: process incoming rtp packets. Subclass must implement either
|
|
|
|
* this method or @process_rtp_packet to process incoming rtp packets.
|
|
|
|
* If the child returns a buffer without a valid timestamp, the timestamp
|
|
|
|
* of the provided buffer will be applied to the result buffer and the
|
|
|
|
* buffer will be pushed. If this function returns %NULL, nothing is pushed.
|
2011-05-23 20:12:50 +00:00
|
|
|
* @packet_lost: signal the depayloader about packet loss
|
|
|
|
* @handle_event: custom event handling
|
2018-04-02 06:34:58 +00:00
|
|
|
* @process_rtp_packet: Same as the process virtual function, but slightly more
|
|
|
|
* efficient, since it is passed the rtp buffer structure that has already
|
|
|
|
* been mapped (with GST_MAP_READ) by the base class and thus does not have
|
|
|
|
* to be mapped again by the subclass. Can be used by the subclass to process
|
|
|
|
* incoming rtp packets. If the subclass returns a buffer without a valid
|
|
|
|
* timestamp, the timestamp of the input buffer will be applied to the result
|
|
|
|
* buffer and the output buffer will be pushed out. If this function returns
|
|
|
|
* %NULL, nothing is pushed out. Since: 1.6.
|
2011-05-23 20:12:50 +00:00
|
|
|
*
|
2017-05-15 15:20:01 +00:00
|
|
|
* Base class for RTP depayloaders.
|
2011-05-23 20:12:50 +00:00
|
|
|
*/
|
2011-11-11 11:24:08 +00:00
|
|
|
struct _GstRTPBaseDepayloadClass
|
2005-07-14 10:29:30 +00:00
|
|
|
{
|
|
|
|
GstElementClass parent_class;
|
|
|
|
|
2018-04-02 06:34:58 +00:00
|
|
|
/*< public >*/
|
2008-10-13 09:16:59 +00:00
|
|
|
/* virtuals, inform the subclass of the caps. */
|
2011-11-11 11:24:08 +00:00
|
|
|
gboolean (*set_caps) (GstRTPBaseDepayload *filter, GstCaps *caps);
|
2005-07-14 10:29:30 +00:00
|
|
|
|
2018-04-02 06:34:58 +00:00
|
|
|
/* pure virtual function */
|
2011-11-11 11:24:08 +00:00
|
|
|
GstBuffer * (*process) (GstRTPBaseDepayload *base, GstBuffer *in);
|
2005-07-14 10:29:30 +00:00
|
|
|
|
2008-05-02 12:11:07 +00:00
|
|
|
/* non-pure function used to to signal the depayloader about packet loss. the
|
|
|
|
* timestamp and duration are the estimated values of the lost packet.
|
|
|
|
* The default implementation of this message pushes a segment update. */
|
2011-11-11 11:24:08 +00:00
|
|
|
gboolean (*packet_lost) (GstRTPBaseDepayload *filter, GstEvent *event);
|
2008-05-02 12:11:07 +00:00
|
|
|
|
2010-12-21 14:02:18 +00:00
|
|
|
/* the default implementation does the default actions for events but
|
2012-07-13 10:11:06 +00:00
|
|
|
* implementation can override. */
|
2011-11-11 11:24:08 +00:00
|
|
|
gboolean (*handle_event) (GstRTPBaseDepayload * filter, GstEvent * event);
|
2010-12-21 14:02:18 +00:00
|
|
|
|
2015-05-27 17:55:20 +00:00
|
|
|
GstBuffer * (*process_rtp_packet) (GstRTPBaseDepayload *base, GstRTPBuffer * rtp_buffer);
|
|
|
|
|
2005-08-09 17:29:40 +00:00
|
|
|
/*< private >*/
|
2015-05-27 17:55:20 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING - 1];
|
2005-07-14 10:29:30 +00:00
|
|
|
};
|
|
|
|
|
2018-03-13 11:17:58 +00:00
|
|
|
GST_RTP_API
|
2011-11-11 11:24:08 +00:00
|
|
|
GType gst_rtp_base_depayload_get_type (void);
|
2005-07-14 10:29:30 +00:00
|
|
|
|
2018-03-13 11:17:58 +00:00
|
|
|
GST_RTP_API
|
2011-11-11 11:24:08 +00:00
|
|
|
GstFlowReturn gst_rtp_base_depayload_push (GstRTPBaseDepayload *filter, GstBuffer *out_buf);
|
2017-05-16 00:00:09 +00:00
|
|
|
|
2018-03-13 11:17:58 +00:00
|
|
|
GST_RTP_API
|
2011-11-11 11:24:08 +00:00
|
|
|
GstFlowReturn gst_rtp_base_depayload_push_list (GstRTPBaseDepayload *filter, GstBufferList *out_list);
|
2010-12-15 11:58:47 +00:00
|
|
|
|
2018-10-10 18:16:12 +00:00
|
|
|
GST_RTP_API
|
|
|
|
gboolean gst_rtp_base_depayload_is_source_info_enabled (GstRTPBaseDepayload * depayload);
|
|
|
|
|
|
|
|
GST_RTP_API
|
|
|
|
void gst_rtp_base_depayload_set_source_info_enabled (GstRTPBaseDepayload * depayload,
|
|
|
|
gboolean enable);
|
|
|
|
|
2006-09-22 14:13:34 +00:00
|
|
|
|
2015-11-10 17:54:23 +00:00
|
|
|
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GstRTPBaseDepayload, gst_object_unref)
|
|
|
|
#endif
|
|
|
|
|
2005-07-14 10:29:30 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2011-11-11 11:24:08 +00:00
|
|
|
#endif /* __GST_RTP_BASE_DEPAYLOAD_H__ */
|