2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-23 16:42:33 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_DVDEC_H__
|
|
|
|
#define __GST_DVDEC_H__
|
|
|
|
|
2005-08-16 14:04:39 +00:00
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
#include <gst/gst.h>
|
2005-08-16 14:04:39 +00:00
|
|
|
#include <libdv/dv.h>
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
|
Ported DVdec to 0.9.
Original commit message from CVS:
* configure.ac:
* ext/dv/Makefile.am:
* ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
(gst_dvdec_get_src_query_types), (gst_dvdec_src_query),
(gst_dvdec_handle_sink_event), (gst_dvdec_handle_src_event),
(gst_dvdec_video_getcaps), (gst_dvdec_video_setcaps),
(gst_dvdec_decode_audio), (gst_dvdec_decode_video),
(gst_dvdec_decode_frame), (gst_dvdec_chain),
(gst_dvdec_change_state), (gst_dvdec_set_property),
(gst_dvdec_get_property), (plugin_init):
* ext/dv/gstdvdec.h:
* ext/esd/esdsink.c: (gst_esdsink_class_init):
Ported DVdec to 0.9.
Parent of esdsink is GstAudioSink.
2005-07-07 17:03:47 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
|
2005-08-16 14:04:39 +00:00
|
|
|
#define GST_TYPE_DVDEC \
|
|
|
|
(gst_dvdec_get_type())
|
|
|
|
#define GST_DVDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DVDEC,GstDVDec))
|
|
|
|
#define GST_DVDEC_CLASS(klass) \
|
2006-06-01 21:07:26 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DVDEC,GstDVDecClass))
|
2005-08-16 14:04:39 +00:00
|
|
|
#define GST_IS_DVDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DVDEC))
|
2006-06-01 21:07:26 +00:00
|
|
|
#define GST_IS_DVDEC_CLASS(klass) \
|
2005-08-16 14:04:39 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DVDEC))
|
|
|
|
|
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
typedef struct _GstDVDec GstDVDec;
|
2005-08-16 14:04:39 +00:00
|
|
|
typedef struct _GstDVDecClass GstDVDecClass;
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstDVDec {
|
2005-12-06 19:44:58 +00:00
|
|
|
GstElement element;
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
GstPad *sinkpad;
|
2005-08-16 14:04:39 +00:00
|
|
|
GstPad *srcpad;
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
dv_decoder_t *decoder;
|
|
|
|
gboolean clamp_luma;
|
|
|
|
gboolean clamp_chroma;
|
|
|
|
gint quality;
|
2004-03-15 16:32:54 +00:00
|
|
|
|
Ported DVdec to 0.9.
Original commit message from CVS:
* configure.ac:
* ext/dv/Makefile.am:
* ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
(gst_dvdec_get_src_query_types), (gst_dvdec_src_query),
(gst_dvdec_handle_sink_event), (gst_dvdec_handle_src_event),
(gst_dvdec_video_getcaps), (gst_dvdec_video_setcaps),
(gst_dvdec_decode_audio), (gst_dvdec_decode_video),
(gst_dvdec_decode_frame), (gst_dvdec_chain),
(gst_dvdec_change_state), (gst_dvdec_set_property),
(gst_dvdec_get_property), (plugin_init):
* ext/dv/gstdvdec.h:
* ext/esd/esdsink.c: (gst_esdsink_class_init):
Ported DVdec to 0.9.
Parent of esdsink is GstAudioSink.
2005-07-07 17:03:47 +00:00
|
|
|
gboolean PAL;
|
2007-03-09 17:32:32 +00:00
|
|
|
gboolean wide;
|
|
|
|
gint frame_len;
|
|
|
|
|
|
|
|
/* input caps */
|
|
|
|
gboolean sink_negotiated;
|
2005-11-22 17:09:36 +00:00
|
|
|
gint framerate_numerator;
|
|
|
|
gint framerate_denominator;
|
2005-12-06 19:44:58 +00:00
|
|
|
gint height;
|
2007-03-09 17:32:32 +00:00
|
|
|
gint par_x;
|
|
|
|
gint par_y;
|
|
|
|
gboolean need_par;
|
Ported DVdec to 0.9.
Original commit message from CVS:
* configure.ac:
* ext/dv/Makefile.am:
* ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
(gst_dvdec_get_src_query_types), (gst_dvdec_src_query),
(gst_dvdec_handle_sink_event), (gst_dvdec_handle_src_event),
(gst_dvdec_video_getcaps), (gst_dvdec_video_setcaps),
(gst_dvdec_decode_audio), (gst_dvdec_decode_video),
(gst_dvdec_decode_frame), (gst_dvdec_chain),
(gst_dvdec_change_state), (gst_dvdec_set_property),
(gst_dvdec_get_property), (plugin_init):
* ext/dv/gstdvdec.h:
* ext/esd/esdsink.c: (gst_esdsink_class_init):
Ported DVdec to 0.9.
Parent of esdsink is GstAudioSink.
2005-07-07 17:03:47 +00:00
|
|
|
|
|
|
|
/* negotiated output */
|
|
|
|
dv_color_space_t space;
|
2005-12-06 19:44:58 +00:00
|
|
|
gint bpp;
|
2007-03-09 17:32:32 +00:00
|
|
|
gboolean src_negotiated;
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2005-12-06 19:44:58 +00:00
|
|
|
gint video_offset;
|
|
|
|
gint drop_factor;
|
2006-06-02 11:33:18 +00:00
|
|
|
|
|
|
|
GstSegment *segment;
|
2004-03-15 16:32:54 +00:00
|
|
|
};
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
struct _GstDVDecClass {
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
|
2005-08-16 14:04:39 +00:00
|
|
|
GType gst_dvdec_get_type (void);
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
|
Ported DVdec to 0.9.
Original commit message from CVS:
* configure.ac:
* ext/dv/Makefile.am:
* ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
(gst_dvdec_get_src_query_types), (gst_dvdec_src_query),
(gst_dvdec_handle_sink_event), (gst_dvdec_handle_src_event),
(gst_dvdec_video_getcaps), (gst_dvdec_video_setcaps),
(gst_dvdec_decode_audio), (gst_dvdec_decode_video),
(gst_dvdec_decode_frame), (gst_dvdec_chain),
(gst_dvdec_change_state), (gst_dvdec_set_property),
(gst_dvdec_get_property), (plugin_init):
* ext/dv/gstdvdec.h:
* ext/esd/esdsink.c: (gst_esdsink_class_init):
Ported DVdec to 0.9.
Parent of esdsink is GstAudioSink.
2005-07-07 17:03:47 +00:00
|
|
|
G_END_DECLS
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2005-08-16 14:04:39 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
#endif /* __GST_DVDEC_H__ */
|