Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / ext / dv / gstdvdemux.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_DVDEMUX_H__
22 #define __GST_DVDEMUX_H__
23
24 #include <gst/gst.h>
25 #include <libdv/dv.h>
26 #include <gst/base/gstadapter.h>
27
28 G_BEGIN_DECLS
29
30 #define GST_TYPE_DVDEMUX \
31   (gst_dvdemux_get_type())
32 #define GST_DVDEMUX(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DVDEMUX,GstDVDemux))
34 #define GST_DVDEMUX_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DVDEMUX,GstDVDemuxClass))
36 #define GST_IS_DVDEMUX(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DVDEMUX))
38 #define GST_IS_DVDEMUX_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DVDEMUX))
40
41
42 typedef struct _GstDVDemux GstDVDemux;
43 typedef struct _GstDVDemuxClass GstDVDemuxClass;
44
45 typedef gboolean (*GstDVDemuxSeekHandler) (GstDVDemux *demux, GstPad * pad, GstEvent * event);
46
47
48 struct _GstDVDemux {
49   GstElement     element;
50
51   GstPad        *sinkpad;
52   GstPad        *videosrcpad;
53   GstPad        *audiosrcpad;
54
55   dv_decoder_t  *decoder;
56
57   GstAdapter    *adapter;
58   gint           frame_len;
59
60   /* video params */
61   gint           framerate_numerator;
62   gint           framerate_denominator;
63   gint           height;
64   gboolean       wide;
65   /* audio params */
66   gint           frequency;
67   gint           channels;
68
69   gint           framecount;
70   
71   gint64         frame_offset;
72   gint64         audio_offset;
73   gint64         video_offset;
74
75   GstDVDemuxSeekHandler seek_handler;
76   GstSegment     byte_segment;
77   GstSegment     time_segment;
78   gboolean       running;
79   gboolean       need_segment;
80   gboolean       new_media;
81   int            frames_since_new_media;
82   
83   gint           found_header; /* ATOMIC */
84   GstEvent      *seek_event;
85   GstEvent      *pending_segment;
86
87   gint16        *audio_buffers[4];
88 };
89
90 struct _GstDVDemuxClass {
91   GstElementClass parent_class;
92 };
93
94 GType gst_dvdemux_get_type (void);
95
96 G_END_DECLS
97
98 #endif /* __GST_DVDEMUX_H__ */