Imported Upstream version 0.10.23
[profile/ivi/gst-plugins-bad.git] / sys / vdpau / mpeg / gstvdpmpegdec.h
1 /*
2  * GStreamer
3  * Copyright (C) 2009 Carl-Anton Ingmarsson <ca.ingmarsson@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., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GST_VDP_MPEG_DEC_H__
22 #define __GST_VDP_MPEG_DEC_H__
23
24 #include <gst/gst.h>
25 #include <gst/base/gstadapter.h>
26
27 #include "../gstvdp/gstvdpdecoder.h"
28 #include "gstvdpmpegframe.h"
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_VDP_MPEG_DEC            (gst_vdp_mpeg_dec_get_type())
33 #define GST_VDP_MPEG_DEC(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VDP_MPEG_DEC,GstVdpMpegDec))
34 #define GST_VDP_MPEG_DEC_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VDP_MPEG_DEC,GstVdpMpegDecClass))
35 #define GST_IS_VDP_MPEG_DEC(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VDP_MPEG_DEC))
36 #define GST_IS_VDP_MPEG_DEC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VDP_MPEG_DEC))
37
38 typedef enum {
39   GST_VDP_MPEG_DEC_STATE_NEED_SEQUENCE,
40   GST_VDP_MPEG_DEC_STATE_NEED_GOP,
41   GST_VDP_MPEG_DEC_STATE_NEED_DATA
42 } GstVdpMpegDecState;
43
44 typedef struct _GstVdpMpegDec      GstVdpMpegDec;
45 typedef struct _GstVdpMpegDecClass GstVdpMpegDecClass;
46
47 struct _GstVdpMpegDec
48 {
49   GstVdpDecoder vdp_decoder;
50
51   VdpDecoder decoder;
52
53         GstVdpMpegStreamInfo stream_info;
54
55   /* decoder state */
56   GstVdpMpegDecState state;
57         gint prev_packet;
58   
59   /* currently decoded frame info */
60   VdpPictureInfoMPEG1Or2 vdp_info;
61   guint64 frame_nr;
62
63   /* frame_nr from GOP */
64   guint64 gop_frame;
65   
66   /* forward and backward reference */
67   GstVideoFrame *f_frame, *b_frame;
68   
69 };
70
71 struct _GstVdpMpegDecClass 
72 {
73   GstVdpDecoderClass vdp_decoder_class;
74 };
75
76 GType gst_vdp_mpeg_dec_get_type (void);
77
78 G_END_DECLS
79
80 #endif /* __GST_VDP_MPEG_DEC_H__ */