2005-10-25 19:19:38 +00:00
|
|
|
/* GStreamer
|
2017-02-26 00:47:03 +00:00
|
|
|
* Copyright (C) <2005> Edgard Lima <edgard.lima@gmail.com>
|
2005-10-25 19:19:38 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-02-23 12:21:25 +00:00
|
|
|
#ifndef __GST_RTP_PCMA_PAY_H__
|
|
|
|
#define __GST_RTP_PCMA_PAY_H__
|
2005-10-25 19:19:38 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2011-11-11 11:32:41 +00:00
|
|
|
#include <gst/rtp/gstrtpbaseaudiopayload.h>
|
2005-10-25 19:19:38 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-01-31 22:56:18 +00:00
|
|
|
typedef struct _GstRtpPcmaPay GstRtpPcmaPay;
|
|
|
|
typedef struct _GstRtpPcmaPayClass GstRtpPcmaPayClass;
|
2006-02-23 12:21:25 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_RTP_PCMA_PAY \
|
|
|
|
(gst_rtp_pcma_pay_get_type())
|
|
|
|
#define GST_RTP_PCMA_PAY(obj) \
|
2011-01-31 22:56:18 +00:00
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_PCMA_PAY,GstRtpPcmaPay))
|
2006-02-23 12:21:25 +00:00
|
|
|
#define GST_RTP_PCMA_PAY_CLASS(klass) \
|
2011-01-31 22:56:18 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_PCMA_PAY,GstRtpPcmaPayClass))
|
2006-02-23 12:21:25 +00:00
|
|
|
#define GST_IS_RTP_PCMA_PAY(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_PCMA_PAY))
|
2006-06-01 21:07:26 +00:00
|
|
|
#define GST_IS_RTP_PCMA_PAY_CLASS(klass) \
|
2006-02-23 12:21:25 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_PCMA_PAY))
|
|
|
|
|
2011-01-31 22:56:18 +00:00
|
|
|
struct _GstRtpPcmaPay
|
2005-10-25 19:19:38 +00:00
|
|
|
{
|
2011-11-11 11:25:01 +00:00
|
|
|
GstRTPBaseAudioPayload audiopayload;
|
2005-10-25 19:19:38 +00:00
|
|
|
};
|
|
|
|
|
2011-01-31 22:56:18 +00:00
|
|
|
struct _GstRtpPcmaPayClass
|
2005-10-25 19:19:38 +00:00
|
|
|
{
|
2011-11-11 11:25:01 +00:00
|
|
|
GstRTPBaseAudioPayloadClass parent_class;
|
2005-10-25 19:19:38 +00:00
|
|
|
};
|
|
|
|
|
2010-03-17 17:23:00 +00:00
|
|
|
GType gst_rtp_pcma_pay_get_type (void);
|
|
|
|
|
2006-02-23 12:21:25 +00:00
|
|
|
gboolean gst_rtp_pcma_pay_plugin_init (GstPlugin * plugin);
|
2005-10-25 19:19:38 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2006-02-23 12:21:25 +00:00
|
|
|
#endif /* __GST_RTP_PCMA_PAY_H__ */
|