ext/dv/: Ueber spiffify some more, added debug category.
[platform/upstream/gst-plugins-good.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,GstDVDemux))
36 #define GST_IS_DVDEMUX(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DVDEMUX))
38 #define GST_IS_DVDEMUX_CLASS(obj) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DVDEMUX))
40
41
42 typedef struct _GstDVDemux GstDVDemux;
43 typedef struct _GstDVDemuxClass GstDVDemuxClass;
44
45 struct _GstDVDemux {
46   GstElement     element;
47
48   GstPad        *sinkpad;
49   GstPad        *videosrcpad;
50   GstPad        *audiosrcpad;
51
52   dv_decoder_t  *decoder;
53
54   GstAdapter    *adapter;
55   gint           frame_len;
56
57   /* PAL or NTSC flag */
58   gboolean       PAL;
59   /* video params */
60   gint           framerate_numerator;
61   gint           framerate_denominator;
62   gint           height;
63   gboolean       wide;
64   /* audio params */
65   gint           frequency;
66   gint           channels;
67
68   gint           framecount;
69   
70   guint64        timestamp;
71   guint64        duration;
72   gint64         total_frames;
73   guint64        audio_offset;
74   guint64        video_offset;
75
76   GstSegment     byte_segment;
77   GstSegment     time_segment;
78   gboolean       need_segment;
79   gboolean       new_media;
80   
81   gboolean       found_header;
82
83   gint16        *audio_buffers[4];
84 };
85
86 struct _GstDVDemuxClass {
87   GstElementClass parent_class;
88 };
89
90 GType gst_dvdemux_get_type (void);
91
92 G_END_DECLS
93
94 #endif /* __GST_DVDEMUX_H__ */