vp8enc: Don't dereference NULL variable
[platform/upstream/gst-plugins-good.git] / ext / vpx / gstvp9enc.h
1 /* VP9
2  * Copyright (C) 2006 David Schleef <ds@schleef.org>
3  * Copyright (C) 2010 Entropy Wave Inc
4  * Copyright (C) 2010-2013 Sebastian Dröge <slomo@circular-chaos.org>
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_VP9_ENC_H__
23 #define __GST_VP9_ENC_H__
24
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #ifdef HAVE_VP9_ENCODER
30
31 #include <gst/gst.h>
32 #include <gst/video/gstvideoencoder.h>
33
34 /* FIXME: Undef HAVE_CONFIG_H because vpx_codec.h uses it,
35  * which causes compilation failures */
36 #ifdef HAVE_CONFIG_H
37 #undef HAVE_CONFIG_H
38 #endif
39
40 #include <vpx/vpx_encoder.h>
41 #include <vpx/vp8cx.h>
42
43 G_BEGIN_DECLS
44
45 #define GST_TYPE_VP9_ENC \
46   (gst_vp9_enc_get_type())
47 #define GST_VP9_ENC(obj) \
48   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VP9_ENC,GstVP9Enc))
49 #define GST_VP9_ENC_CLASS(klass) \
50   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VP9_ENC,GstVP9EncClass))
51 #define GST_IS_VP9_ENC(obj) \
52   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VP9_ENC))
53 #define GST_IS_VP9_ENC_CLASS(obj) \
54   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VP9_ENC))
55
56 typedef struct _GstVP9Enc GstVP9Enc;
57 typedef struct _GstVP9EncClass GstVP9EncClass;
58
59 struct _GstVP9Enc
60 {
61   GstVideoEncoder base_video_encoder;
62
63   /* < private > */
64   vpx_codec_ctx_t encoder;
65   GMutex encoder_lock;
66
67   /* properties */
68   vpx_codec_enc_cfg_t cfg;
69   gboolean have_default_config;
70   gboolean rc_target_bitrate_set;
71   gint n_ts_target_bitrate;
72   gint n_ts_rate_decimator;
73   gint n_ts_layer_id;
74   /* Global two-pass options */
75   gchar *multipass_cache_file;
76   GByteArray *first_pass_cache_content;
77
78   /* Encode parameter */
79   gint64 deadline;
80
81   /* Controls */
82   VPX_SCALING_MODE h_scaling_mode;
83   VPX_SCALING_MODE v_scaling_mode;
84   int cpu_used;
85   gboolean enable_auto_alt_ref;
86   unsigned int noise_sensitivity;
87   unsigned int sharpness;
88   unsigned int static_threshold;
89   vp8e_token_partitions token_partitions;
90   unsigned int arnr_maxframes;
91   unsigned int arnr_strength;
92   unsigned int arnr_type;
93   vp8e_tuning tuning;
94   unsigned int cq_level;
95   unsigned int max_intra_bitrate_pct;
96   /* Timebase - a value of 0 will use the framerate */
97   unsigned int timebase_n;
98   unsigned int timebase_d;
99
100   /* state */
101   gboolean inited;
102
103   vpx_image_t image;
104
105   int n_frames;
106
107   GstVideoCodecState *input_state;
108 };
109
110 struct _GstVP9EncClass
111 {
112   GstVideoEncoderClass base_video_encoder_class;
113 };
114
115 GType gst_vp9_enc_get_type (void);
116
117 G_END_DECLS
118
119 #endif
120
121 #endif /* __GST_VP9_ENC_H__ */