vp8enc: Don't dereference NULL variable
[platform/upstream/gst-plugins-good.git] / ext / vpx / gstvp9dec.h
1 /* VP9
2  * Copyright (C) 2006 David Schleef <ds@schleef.org>
3  * Copyright (C) 2008,2009,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
23 #ifndef __GST_VP9_DEC_H__
24 #define __GST_VP9_DEC_H__
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #ifdef HAVE_VP9_DECODER
31
32 #include <gst/gst.h>
33 #include <gst/video/gstvideodecoder.h>
34
35 /* FIXME: Undef HAVE_CONFIG_H because vpx_codec.h uses it,
36  * which causes compilation failures */
37 #ifdef HAVE_CONFIG_H
38 #undef HAVE_CONFIG_H
39 #endif
40
41 #include <vpx/vpx_decoder.h>
42 #include <vpx/vp8dx.h>
43
44 G_BEGIN_DECLS
45
46 #define GST_TYPE_VP9_DEC \
47   (gst_vp9_dec_get_type())
48 #define GST_VP9_DEC(obj) \
49   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VP9_DEC,GstVP9Dec))
50 #define GST_VP9_DEC_CLASS(klass) \
51   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VP9_DEC,GstVP9DecClass))
52 #define GST_IS_VP9_DEC(obj) \
53   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VP9_DEC))
54 #define GST_IS_VP9_DEC_CLASS(obj) \
55   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VP9_DEC))
56
57 typedef struct _GstVP9Dec GstVP9Dec;
58 typedef struct _GstVP9DecClass GstVP9DecClass;
59
60 struct _GstVP9Dec
61 {
62   GstVideoDecoder base_video_decoder;
63
64   /* < private > */
65   vpx_codec_ctx_t decoder;
66
67   /* state */
68   gboolean decoder_inited;
69
70   /* properties */
71   gboolean post_processing;
72   enum vp8_postproc_level post_processing_flags;
73   gint deblocking_level;
74   gint noise_level;
75   gint threads;
76
77   GstVideoCodecState *input_state;
78   GstVideoCodecState *output_state;
79 };
80
81 struct _GstVP9DecClass
82 {
83   GstVideoDecoderClass base_video_decoder_class;
84 };
85
86 GType gst_vp9_dec_get_type (void);
87
88 G_END_DECLS
89
90 #endif
91
92 #endif /* __GST_VP9_DEC_H__ */