2 * gstvaapidecoder_h264.h - H.264 decoder
4 * Copyright (C) 2011-2012 Intel Corporation
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1
9 * of the License, or (at your option) any later version.
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 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
22 #ifndef GST_VAAPI_DECODER_H264_H
23 #define GST_VAAPI_DECODER_H264_H
25 #include <gst/vaapi/gstvaapidecoder.h>
29 #define GST_VAAPI_TYPE_DECODER_H264 \
30 (gst_vaapi_decoder_h264_get_type())
32 #define GST_VAAPI_DECODER_H264(obj) \
33 (G_TYPE_CHECK_INSTANCE_CAST((obj), \
34 GST_VAAPI_TYPE_DECODER_H264, \
37 #define GST_VAAPI_DECODER_H264_CLASS(klass) \
38 (G_TYPE_CHECK_CLASS_CAST((klass), \
39 GST_VAAPI_TYPE_DECODER_H264, \
40 GstVaapiDecoderH264Class))
42 #define GST_VAAPI_IS_DECODER_H264(obj) \
43 (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_VAAPI_TYPE_DECODER_H264))
45 #define GST_VAAPI_IS_DECODER_H264_CLASS(klass) \
46 (G_TYPE_CHECK_CLASS_TYPE((klass), GST_VAAPI_TYPE_DECODER_H264))
48 #define GST_VAAPI_DECODER_H264_GET_CLASS(obj) \
49 (G_TYPE_INSTANCE_GET_CLASS((obj), \
50 GST_VAAPI_TYPE_DECODER_H264, \
51 GstVaapiDecoderH264Class))
53 typedef struct _GstVaapiDecoderH264 GstVaapiDecoderH264;
54 typedef struct _GstVaapiDecoderH264Private GstVaapiDecoderH264Private;
55 typedef struct _GstVaapiDecoderH264Class GstVaapiDecoderH264Class;
58 * GstVaapiDecoderH264:
60 * A decoder based on H264.
62 struct _GstVaapiDecoderH264 {
64 GstVaapiDecoder parent_instance;
66 GstVaapiDecoderH264Private *priv;
70 * GstVaapiDecoderH264Class:
72 * A decoder class based on H264.
74 struct _GstVaapiDecoderH264Class {
76 GstVaapiDecoderClass parent_class;
80 gst_vaapi_decoder_h264_get_type(void) G_GNUC_CONST;
83 gst_vaapi_decoder_h264_new(GstVaapiDisplay *display, GstCaps *caps);
87 #endif /* GST_VAAPI_DECODER_H264_H */