tizen 2.0 init
[framework/multimedia/gst-plugins-good0.10.git] / gst / rtp / gstrtph264pay.h
1 /* GStreamer
2  * Copyright (C) <2006> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_RTP_H264_PAY_H__
21 #define __GST_RTP_H264_PAY_H__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstadapter.h>
25 #include <gst/rtp/gstbasertppayload.h>
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_RTP_H264_PAY \
30   (gst_rtp_h264_pay_get_type())
31 #define GST_RTP_H264_PAY(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_H264_PAY,GstRtpH264Pay))
33 #define GST_RTP_H264_PAY_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_H264_PAY,GstRtpH264PayClass))
35 #define GST_IS_RTP_H264_PAY(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_H264_PAY))
37 #define GST_IS_RTP_H264_PAY_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_H264_PAY))
39
40 typedef enum
41 {
42   GST_H264_SCAN_MODE_BYTESTREAM,
43   GST_H264_SCAN_MODE_MULTI_NAL,
44   GST_H264_SCAN_MODE_SINGLE_NAL
45 } GstH264ScanMode;
46
47 typedef struct _GstRtpH264Pay GstRtpH264Pay;
48 typedef struct _GstRtpH264PayClass GstRtpH264PayClass;
49
50 struct _GstRtpH264Pay
51 {
52   GstBaseRTPPayload payload;
53
54   guint profile;
55   GList *sps, *pps;
56
57   gboolean packetized;
58   gboolean au_alignment;
59   guint nal_length_size;
60   GArray *queue;
61
62   gchar *sprop_parameter_sets;
63   gboolean update_caps;
64   GstH264ScanMode scan_mode;
65
66   GstAdapter *adapter;
67
68   guint spspps_interval;
69   gboolean send_spspps;
70   GstClockTime last_spspps;
71
72   gboolean buffer_list;
73 };
74
75 struct _GstRtpH264PayClass
76 {
77   GstBaseRTPPayloadClass parent_class;
78 };
79
80 GType gst_rtp_h264_pay_get_type (void);
81
82 gboolean gst_rtp_h264_pay_plugin_init (GstPlugin * plugin);
83
84 G_END_DECLS
85
86 #endif /* __GST_RTP_H264_PAY_H__ */