Merging gst-plugins-ugly
[platform/upstream/gstreamer.git] / ext / x264 / gstx264enc.h
1 /* GStreamer H264 encoder plugin
2  * Copyright (C) 2005 Michal Benes <michal.benes@itonis.tv>
3  * Copyright (C) 2005 Josef Zlomek <josef.zlomek@itonis.tv>
4  * Copyright (C) 2016 Sebastian Dröge <sebastian@centricular.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef __GST_X264_ENC_H__
23 #define __GST_X264_ENC_H__
24
25 #include <gst/gst.h>
26 #include <gst/video/video.h>
27 #include <gst/video/gstvideoencoder.h>
28 #include "gstencoderbitrateprofilemanager.h"
29
30 #ifdef HAVE_STDINT_H
31 #include <stdint.h>
32 #endif
33
34 /* The x264.h header says this isn't needed with MinGW, but sometimes the
35  * compiler is unable to correctly do the pointer indirection for us, which
36  * leads to a segfault when you try to dereference any const values provided
37  * by x264.dll. See: https://bugzilla.gnome.org/show_bug.cgi?id=779249 */
38 #if defined(_WIN32) && !defined(X264_API_IMPORTS)
39 # define X264_API_IMPORTS
40 #endif
41 #include <x264.h>
42
43 G_BEGIN_DECLS
44
45 #define GST_TYPE_X264_ENC \
46   (gst_x264_enc_get_type())
47 #define GST_X264_ENC(obj) \
48   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_X264_ENC,GstX264Enc))
49 #define GST_X264_ENC_CLASS(klass) \
50   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_X264_ENC,GstX264EncClass))
51 #define GST_IS_X264_ENC(obj) \
52   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_X264_ENC))
53 #define GST_IS_X264_ENC_CLASS(klass) \
54   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_X264_ENC))
55
56 typedef struct _GstX264Enc GstX264Enc;
57 typedef struct _GstX264EncClass GstX264EncClass;
58 typedef struct _GstX264EncVTable GstX264EncVTable;
59
60 struct _GstX264Enc
61 {
62   GstVideoEncoder element;
63
64   /*< private >*/
65   GstX264EncVTable *vtable;
66   x264_t *x264enc;
67   x264_param_t x264param;
68   gint current_byte_stream;
69
70   /* List of frame/buffer mapping structs for
71    * pending frames */
72   GList *pending_frames;
73
74   /* properties */
75   guint threads;
76   gboolean sliced_threads;
77   gint sync_lookahead;
78   gint pass;
79   guint quantizer;
80   gchar *mp_cache_file;
81   gboolean byte_stream;
82   guint bitrate;
83   gboolean intra_refresh;
84   gint me;
85   guint subme;
86   guint analyse;
87   gboolean dct8x8;
88   guint ref;
89   guint bframes;
90   gboolean b_adapt;
91   gboolean b_pyramid;
92   gboolean weightb;
93   guint sps_id;
94   gboolean au_nalu;
95   gboolean trellis;
96   guint vbv_buf_capacity;
97   guint keyint_max;
98   gboolean cabac;
99   gfloat ip_factor;
100   gfloat pb_factor;
101   guint qp_min;
102   guint qp_max;
103   guint qp_step;
104   gboolean mb_tree;
105   gint rc_lookahead;
106   guint noise_reduction;
107   gboolean interlaced;
108   gint speed_preset;
109   gint psy_tune;
110   guint tune;
111   GString *tunings;
112   GString *option_string_prop; /* option-string property */
113   GString *option_string; /* used by set prop */
114   gint frame_packing;
115   gboolean insert_vui;
116
117   /* input description */
118   GstVideoCodecState *input_state;
119
120   /* configuration changed  while playing */
121   gboolean reconfig;
122
123   /* from the downstream caps */
124   const gchar *peer_profile;
125   gboolean peer_intra_profile;
126   gint peer_level_idc;
127
128   /* cached values to set x264_picture_t */
129   gint x264_nplanes;
130
131   GstEncoderBitrateProfileManager *bitrate_manager;
132 };
133
134 struct _GstX264EncClass
135 {
136   GstVideoEncoderClass parent_class;
137 };
138
139 GType gst_x264_enc_get_type (void);
140 GST_ELEMENT_REGISTER_DECLARE (x264enc);
141
142 G_END_DECLS
143
144 #endif /* __GST_X264_ENC_H__ */