cd42fbad3ebcd7a66e776650349e60bddfc7aafa
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtph265pay.h
1 /* GStreamer
2  * Copyright (C) <2006> Wim Taymans <wim.taymans@gmail.com>
3  * Copyright (C) <2014> Jurgen Slowack <jurgenslowack@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef __GST_RTP_H265_PAY_H__
22 #define __GST_RTP_H265_PAY_H__
23
24 #include <gst/gst.h>
25 #include <gst/base/gstadapter.h>
26 #include <gst/rtp/gstrtpbasepayload.h>
27 #include "gstrtph265types.h"
28
29 G_BEGIN_DECLS
30 #define GST_TYPE_RTP_H265_PAY \
31   (gst_rtp_h265_pay_get_type())
32 #define GST_RTP_H265_PAY(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_H265_PAY,GstRtpH265Pay))
34 #define GST_RTP_H265_PAY_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_H265_PAY,GstRtpH265PayClass))
36 #define GST_IS_RTP_H265_PAY(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_H265_PAY))
38 #define GST_IS_RTP_H265_PAY_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_H265_PAY))
40 typedef struct _GstRtpH265Pay GstRtpH265Pay;
41 typedef struct _GstRtpH265PayClass GstRtpH265PayClass;
42
43 typedef enum
44 {
45   GST_H265_ALIGNMENT_UNKNOWN,
46   GST_H265_ALIGNMENT_NAL,
47   GST_H265_ALIGNMENT_AU
48 } GstH265Alignment;
49
50 struct _GstRtpH265Pay
51 {
52   GstRTPBasePayload payload;
53
54   GPtrArray *sps, *pps, *vps;
55
56   GstH265StreamFormat stream_format;
57   GstH265Alignment alignment;
58   guint nal_length_size;
59   GArray *queue;
60
61   GstAdapter *adapter;
62
63   gint vps_sps_pps_interval;
64   gboolean send_vps_sps_pps;
65   GstClockTime last_vps_sps_pps;
66 };
67
68 struct _GstRtpH265PayClass
69 {
70   GstRTPBasePayloadClass parent_class;
71 };
72
73 GType gst_rtp_h265_pay_get_type (void);
74
75 gboolean gst_rtp_h265_pay_plugin_init (GstPlugin * plugin);
76
77 G_END_DECLS
78 #endif /* __GST_RTP_H265_PAY_H__ */