blob: 19bf308f8898ee3533e0b53a5f4e3212d6d91171 [file] [log] [blame]
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001/* GStreamer
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00002 * 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
Benjamin Otte90da9042003-06-29 19:46:12 +000020#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000023#include <string.h>
Wim Taymans17d464c2004-10-26 17:59:18 +000024#include <math.h>
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000025
26/* First, include the header file for the plugin, to bring in the
27 * object definition and other useful things.
28 */
29#include "gstdvdec.h"
30
Wim Taymans36b7f1a2002-01-26 02:48:47 +000031#define NTSC_HEIGHT 480
32#define NTSC_BUFFER 120000
David Schleefce51f612003-12-22 01:47:09 +000033#define NTSC_FRAMERATE 29.997
34
Wim Taymans36b7f1a2002-01-26 02:48:47 +000035#define PAL_HEIGHT 576
36#define PAL_BUFFER 144000
David Schleefce51f612003-12-22 01:47:09 +000037#define PAL_FRAMERATE 25.0
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000038
Wim Taymansb4642382004-10-18 14:02:51 +000039#define PAL_NORMAL_PAR_X 16
40#define PAL_NORMAL_PAR_Y 15
41#define PAL_WIDE_PAR_X 64
42#define PAL_WIDE_PAR_Y 45
43
44#define NTSC_NORMAL_PAR_X 80
45#define NTSC_NORMAL_PAR_Y 89
46#define NTSC_WIDE_PAR_X 320
47#define NTSC_WIDE_PAR_Y 267
48
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000049/* The ElementDetails structure gives a human-readable description
50 * of the plugin, as well as author and version data.
51 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +000052static GstElementDetails dvdec_details =
53GST_ELEMENT_DETAILS ("DV (smpte314) decoder plugin",
54 "Codec/Decoder/Video",
55 "Uses libdv to decode DV video (libdv.sourceforge.net)",
56 "Erik Walthinsen <omega@cse.ogi.edu>\n" "Wim Taymans <wim.taymans@tvd.be>");
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000057
Wim Taymans36b7f1a2002-01-26 02:48:47 +000058
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000059/* These are the signals that this element can fire. They are zero-
60 * based because the numbers themselves are private to the object.
61 * LAST_SIGNAL is used for initialization of the signal array.
62 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +000063enum
64{
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000065 /* FILL ME */
66 LAST_SIGNAL
67};
68
Wim Taymanse5bb1f12004-06-27 16:38:41 +000069#define DV_DEFAULT_QUALITY DV_QUALITY_BEST
70#define DV_DEFAULT_DECODE_NTH 1
71
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000072/* Arguments are identified the same way, but cannot be zero, so you
73 * must leave the ARG_0 entry in as a placeholder.
74 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +000075enum
76{
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000077 ARG_0,
Wim Taymans4eaa7cc2002-09-09 22:20:34 +000078 ARG_CLAMP_LUMA,
79 ARG_CLAMP_CHROMA,
Wim Taymanse5bb1f12004-06-27 16:38:41 +000080 ARG_QUALITY,
81 ARG_DECODE_NTH
Stéphane Loeuillet4c899782004-05-21 23:28:57 +000082 /* FILL ME */
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000083};
84
Jan Schmidtea235cb2004-05-12 14:53:57 +000085const gint qualities[] = {
86 DV_QUALITY_DC,
87 DV_QUALITY_AC_1,
88 DV_QUALITY_AC_2,
89 DV_QUALITY_DC | DV_QUALITY_COLOR,
90 DV_QUALITY_AC_1 | DV_QUALITY_COLOR,
Stéphane Loeuillet4c899782004-05-21 23:28:57 +000091 DV_QUALITY_AC_2 | DV_QUALITY_COLOR
Jan Schmidtea235cb2004-05-12 14:53:57 +000092};
93
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +000094/* The PadFactory structures describe what pads the element has or
95 * can have. They can be quite complex, but for this dvdec plugin
96 * they are rather simple.
97 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +000098static GstStaticPadTemplate sink_temp = GST_STATIC_PAD_TEMPLATE ("sink",
99 GST_PAD_SINK,
100 GST_PAD_ALWAYS,
101 GST_STATIC_CAPS ("video/x-dv, systemstream = (boolean) true")
102 );
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000103
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000104static GstStaticPadTemplate video_src_temp = GST_STATIC_PAD_TEMPLATE ("video",
105 GST_PAD_SRC,
106 GST_PAD_ALWAYS,
107 GST_STATIC_CAPS ("video/x-raw-yuv, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000108 "format = (fourcc) YUY2, "
109 "width = (int) 720, "
110 "height = (int) { "
111 G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
Wim Taymansb4642382004-10-18 14:02:51 +0000112 " }, "
113 "pixel-aspect-ratio=(fraction) { "
114 G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
115 G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
116 G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
117 G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
118 "framerate = (double) [ 1.0, 60.0 ];"
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000119 //"framerate = (double) { "
120 //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
121 //" }; "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000122 "video/x-raw-rgb, "
123 "bpp = (int) 32, "
124 "depth = (int) 32, "
125 "endianness = (int) " G_STRINGIFY (G_BIG_ENDIAN) ", "
Jan Schmidte9d76082004-05-07 16:17:25 +0000126 "red_mask = (int) 0x00ff0000, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000127 "green_mask = (int) 0x0000ff00, "
Jan Schmidte9d76082004-05-07 16:17:25 +0000128 "blue_mask = (int) 0x000000ff, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000129 "width = (int) 720, "
130 "height = (int) { "
131 G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
Wim Taymansb4642382004-10-18 14:02:51 +0000132 " }, "
133 "pixel-aspect-ratio=(fraction) { "
134 G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
135 G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
136 G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
137 G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
138 "framerate = (double) [ 1.0, 60.0 ];"
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000139 //"framerate = (double) { "
140 //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
141 //" }; "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000142 "video/x-raw-rgb, "
143 "bpp = (int) 24, "
144 "depth = (int) 24, "
145 "endianness = (int) " G_STRINGIFY (G_BIG_ENDIAN) ", "
Jan Schmidte9d76082004-05-07 16:17:25 +0000146 "red_mask = (int) 0x00ff0000, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000147 "green_mask = (int) 0x0000ff00, "
Jan Schmidte9d76082004-05-07 16:17:25 +0000148 "blue_mask = (int) 0x000000ff, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000149 "width = (int) 720, "
150 "height = (int) { "
151 G_STRINGIFY (NTSC_HEIGHT) ", " G_STRINGIFY (PAL_HEIGHT)
Wim Taymansb4642382004-10-18 14:02:51 +0000152 " }, "
153 "pixel-aspect-ratio=(fraction) { "
154 G_STRINGIFY (PAL_NORMAL_PAR_X) "/" G_STRINGIFY (PAL_NORMAL_PAR_Y) ","
155 G_STRINGIFY (PAL_WIDE_PAR_X) "/" G_STRINGIFY (PAL_WIDE_PAR_Y) ","
156 G_STRINGIFY (NTSC_NORMAL_PAR_X) "/" G_STRINGIFY (NTSC_NORMAL_PAR_Y) ","
157 G_STRINGIFY (NTSC_WIDE_PAR_X) "/" G_STRINGIFY (NTSC_WIDE_PAR_Y) "},"
158 "framerate = (double) [ 1.0, 60.0 ]"
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000159 //"framerate = (double) { "
160 //G_STRINGIFY (PAL_FRAMERATE) ", " G_STRINGIFY (NTSC_FRAMERATE)
161 //" }"
162 )
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000163 );
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000164
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000165static GstStaticPadTemplate audio_src_temp = GST_STATIC_PAD_TEMPLATE ("audio",
166 GST_PAD_SRC,
167 GST_PAD_ALWAYS,
168 GST_STATIC_CAPS ("audio/x-raw-int, "
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000169 "depth = (int) 16, "
170 "width = (int) 16, "
171 "signed = (boolean) TRUE, "
172 "channels = (int) 2, "
173 "endianness = (int) " G_STRINGIFY (G_LITTLE_ENDIAN) ", "
174 "rate = (int) [ 4000, 48000 ]")
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000175 );
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000176
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000177#define GST_TYPE_DVDEC_QUALITY (gst_dvdec_quality_get_type())
178GType
179gst_dvdec_quality_get_type (void)
180{
181 static GType qtype = 0;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000182
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000183 if (qtype == 0) {
Jan Schmidtea235cb2004-05-12 14:53:57 +0000184 static const GEnumValue values[] = {
185 {0, "DV_QUALITY_FASTEST", "Fastest decoding, low-quality mono"},
186 {1, "DV_QUALITY_AC_1", "Mono decoding using the first AC coefficient"},
187 {2, "DV_QUALITY_AC_2", "Highest quality mono decoding"},
188 {3, "DV_QUALITY_DC|DV_QUALITY_COLOUR", "Fastest colour decoding"},
189 {4, "DV_QUALITY_AC_1|DV_QUALITY_COLOUR",
Jan Schmidt2d80a4a2004-05-13 11:32:42 +0000190 "Colour, using only the first AC coefficient"},
Jan Schmidtea235cb2004-05-12 14:53:57 +0000191 {5, "DV_QUALITY_BEST", "Highest quality colour decoding"},
Johan Dahlin92be8f92004-05-19 09:21:43 +0000192 {0, NULL, NULL},
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000193 };
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000194
Jan Schmidtea235cb2004-05-12 14:53:57 +0000195 qtype = g_enum_register_static ("GstDVDecQualityEnum", values);
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000196 }
197 return qtype;
198}
199
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000200/* A number of functon prototypes are given so we can refer to them later. */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000201static void gst_dvdec_base_init (gpointer g_class);
202static void gst_dvdec_class_init (GstDVDecClass * klass);
203static void gst_dvdec_init (GstDVDec * dvdec);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000204
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000205static const GstQueryType *gst_dvdec_get_src_query_types (GstPad * pad);
206static gboolean gst_dvdec_src_query (GstPad * pad, GstQueryType type,
207 GstFormat * format, gint64 * value);
208static const GstFormat *gst_dvdec_get_formats (GstPad * pad);
209static gboolean gst_dvdec_sink_convert (GstPad * pad, GstFormat src_format,
210 gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
211static gboolean gst_dvdec_src_convert (GstPad * pad, GstFormat src_format,
212 gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000213
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000214static GstPadLinkReturn gst_dvdec_video_link (GstPad * pad,
215 const GstCaps * caps);
216static GstCaps *gst_dvdec_video_getcaps (GstPad * pad);
Wim Taymansdb816992002-06-16 14:45:46 +0000217
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000218static const GstEventMask *gst_dvdec_get_event_masks (GstPad * pad);
219static gboolean gst_dvdec_handle_src_event (GstPad * pad, GstEvent * event);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000220
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000221static void gst_dvdec_loop (GstElement * element);
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000222
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000223static GstElementStateReturn gst_dvdec_change_state (GstElement * element);
224
225static void gst_dvdec_set_property (GObject * object, guint prop_id,
226 const GValue * value, GParamSpec * pspec);
227static void gst_dvdec_get_property (GObject * object, guint prop_id,
228 GValue * value, GParamSpec * pspec);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000229
230/* The parent class pointer needs to be kept around for some object
231 * operations.
232 */
233static GstElementClass *parent_class = NULL;
234
235/* This array holds the ids of the signals registered for this object.
236 * The array indexes are based on the enum up above.
237 */
Andy Wingod6258152002-03-19 04:10:05 +0000238/*static guint gst_dvdec_signals[LAST_SIGNAL] = { 0 }; */
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000239
240/* This function is used to register and subsequently return the type
241 * identifier for this object class. On first invocation, it will
242 * register the type, providing the name of the class, struct sizes,
243 * and pointers to the various functions that define the class.
244 */
245GType
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000246gst_dvdec_get_type (void)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000247{
248 static GType dvdec_type = 0;
249
250 if (!dvdec_type) {
251 static const GTypeInfo dvdec_info = {
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000252 sizeof (GstDVDecClass),
253 gst_dvdec_base_init,
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000254 NULL,
255 (GClassInitFunc) gst_dvdec_class_init,
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000256 NULL,
257 NULL,
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000258 sizeof (GstDVDec),
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000259 0,
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000260 (GInstanceInitFunc) gst_dvdec_init,
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000261 };
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000262
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000263 dvdec_type =
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000264 g_type_register_static (GST_TYPE_ELEMENT, "GstDVDec", &dvdec_info, 0);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000265 }
266 return dvdec_type;
267}
268
Jan Schmidtc4ec05b2003-11-02 03:32:31 +0000269static void
270gst_dvdec_base_init (gpointer g_class)
271{
272 GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
273
274 /* The pad templates can be easily generated from the factories above,
275 * and then added to the list of padtemplates for the elementfactory.
276 * Note that the generated padtemplates are stored in static global
277 * variables, for the gst_dvdec_init function to use later on.
278 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000279 gst_element_class_add_pad_template (element_class,
280 gst_static_pad_template_get (&sink_temp));
281 gst_element_class_add_pad_template (element_class,
282 gst_static_pad_template_get (&video_src_temp));
283 gst_element_class_add_pad_template (element_class,
284 gst_static_pad_template_get (&audio_src_temp));
Jan Schmidtc4ec05b2003-11-02 03:32:31 +0000285
286 gst_element_class_set_details (element_class, &dvdec_details);
287}
288
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000289/* In order to create an instance of an object, the class must be
290 * initialized by this function. GObject will take care of running
291 * it, based on the pointer to the function provided above.
292 */
293static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000294gst_dvdec_class_init (GstDVDecClass * klass)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000295{
296 /* Class pointers are needed to supply pointers to the private
297 * implementations of parent class methods.
298 */
299 GObjectClass *gobject_class;
300 GstElementClass *gstelement_class;
301
302 /* Since the dvdec class contains the parent classes, you can simply
303 * cast the pointer to get access to the parent classes.
304 */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000305 gobject_class = (GObjectClass *) klass;
306 gstelement_class = (GstElementClass *) klass;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000307
308 /* The parent class is needed for class method overrides. */
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000309 parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000310
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000311 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CLAMP_LUMA,
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000312 g_param_spec_boolean ("clamp_luma", "Clamp luma", "Clamp luma",
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000313 FALSE, G_PARAM_READWRITE));
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000314 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CLAMP_CHROMA,
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000315 g_param_spec_boolean ("clamp_chroma", "Clamp chroma", "Clamp chroma",
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000316 FALSE, G_PARAM_READWRITE));
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000317 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
Jan Schmidtea235cb2004-05-12 14:53:57 +0000318 g_param_spec_enum ("quality", "Quality", "Decoding quality",
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000319 GST_TYPE_DVDEC_QUALITY, DV_DEFAULT_QUALITY, G_PARAM_READWRITE));
320 g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DECODE_NTH,
321 g_param_spec_int ("drop-factor", "Drop Factor", "Only decode Nth frame",
322 1, G_MAXINT, DV_DEFAULT_DECODE_NTH, G_PARAM_READWRITE));
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000323
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000324 gobject_class->set_property = gst_dvdec_set_property;
325 gobject_class->get_property = gst_dvdec_get_property;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000326
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000327 gstelement_class->change_state = gst_dvdec_change_state;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000328
Andy Wingod6258152002-03-19 04:10:05 +0000329 /* table initialization, only do once */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000330 dv_init (0, 0);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000331}
332
333/* This function is responsible for initializing a specific instance of
334 * the plugin.
335 */
336static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000337gst_dvdec_init (GstDVDec * dvdec)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000338{
Wim Taymansce3fd0b2002-06-13 22:30:15 +0000339 gint i;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000340
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000341 dvdec->found_header = FALSE;
Wim Taymansce3fd0b2002-06-13 22:30:15 +0000342
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000343 dvdec->sinkpad =
344 gst_pad_new_from_template (gst_static_pad_template_get (&sink_temp),
345 "sink");
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000346 gst_pad_set_query_function (dvdec->sinkpad, NULL);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000347 gst_pad_set_convert_function (dvdec->sinkpad,
348 GST_DEBUG_FUNCPTR (gst_dvdec_sink_convert));
349 gst_pad_set_formats_function (dvdec->sinkpad,
350 GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000351 gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->sinkpad);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000352
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000353 dvdec->videosrcpad =
354 gst_pad_new_from_template (gst_static_pad_template_get (&video_src_temp),
355 "video");
356 gst_pad_set_query_function (dvdec->videosrcpad,
357 GST_DEBUG_FUNCPTR (gst_dvdec_src_query));
358 gst_pad_set_query_type_function (dvdec->videosrcpad,
359 GST_DEBUG_FUNCPTR (gst_dvdec_get_src_query_types));
360 gst_pad_set_event_function (dvdec->videosrcpad,
361 GST_DEBUG_FUNCPTR (gst_dvdec_handle_src_event));
362 gst_pad_set_event_mask_function (dvdec->videosrcpad,
363 GST_DEBUG_FUNCPTR (gst_dvdec_get_event_masks));
364 gst_pad_set_convert_function (dvdec->videosrcpad,
365 GST_DEBUG_FUNCPTR (gst_dvdec_src_convert));
366 gst_pad_set_formats_function (dvdec->videosrcpad,
367 GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
368 gst_pad_set_getcaps_function (dvdec->videosrcpad,
369 GST_DEBUG_FUNCPTR (gst_dvdec_video_getcaps));
370 gst_pad_set_link_function (dvdec->videosrcpad,
371 GST_DEBUG_FUNCPTR (gst_dvdec_video_link));
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000372 gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->videosrcpad);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000373
374 dvdec->audiosrcpad =
375 gst_pad_new_from_template (gst_static_pad_template_get (&audio_src_temp),
376 "audio");
377 gst_pad_set_query_function (dvdec->audiosrcpad,
378 GST_DEBUG_FUNCPTR (gst_dvdec_src_query));
379 gst_pad_set_query_type_function (dvdec->audiosrcpad,
380 GST_DEBUG_FUNCPTR (gst_dvdec_get_src_query_types));
381 gst_pad_set_event_function (dvdec->audiosrcpad,
382 GST_DEBUG_FUNCPTR (gst_dvdec_handle_src_event));
383 gst_pad_set_event_mask_function (dvdec->audiosrcpad,
384 GST_DEBUG_FUNCPTR (gst_dvdec_get_event_masks));
385 gst_pad_set_convert_function (dvdec->audiosrcpad,
386 GST_DEBUG_FUNCPTR (gst_dvdec_src_convert));
387 gst_pad_set_formats_function (dvdec->audiosrcpad,
388 GST_DEBUG_FUNCPTR (gst_dvdec_get_formats));
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000389 gst_pad_use_explicit_caps (dvdec->audiosrcpad);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000390 gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->audiosrcpad);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000391
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000392 gst_element_set_loop_function (GST_ELEMENT (dvdec), gst_dvdec_loop);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000393
Jan Schmidt192579e2004-06-07 12:01:52 +0000394 dvdec->bs = NULL;
Wim Taymansce3fd0b2002-06-13 22:30:15 +0000395 dvdec->length = 0;
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000396 dvdec->next_ts = 0LL;
Jan Schmidt0e0c2e52003-01-04 04:10:30 +0000397 dvdec->end_position = -1LL;
Wim Taymansdb816992002-06-16 14:45:46 +0000398 dvdec->need_discont = FALSE;
Jan Schmidt192579e2004-06-07 12:01:52 +0000399 dvdec->new_media = FALSE;
Wim Taymansdb816992002-06-16 14:45:46 +0000400 dvdec->framerate = 0;
401 dvdec->height = 0;
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000402 dvdec->frequency = 0;
403 dvdec->channels = 0;
Wim Taymanscda34e62004-10-18 17:49:09 +0000404 dvdec->wide = FALSE;
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000405 dvdec->drop_factor = 1;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000406
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000407 dvdec->clamp_luma = FALSE;
408 dvdec->clamp_chroma = FALSE;
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000409 dvdec->quality = DV_DEFAULT_QUALITY;
Wim Taymans140d2792002-11-02 13:34:42 +0000410 dvdec->loop = FALSE;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000411
412 for (i = 0; i < 4; i++) {
413 dvdec->audio_buffers[i] =
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000414 (gint16 *) g_malloc (DV_AUDIO_MAX_SAMPLES * sizeof (gint16));
Wim Taymansce3fd0b2002-06-13 22:30:15 +0000415 }
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000416}
417
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000418static const GstFormat *
419gst_dvdec_get_formats (GstPad * pad)
Wim Taymansa7b776e2002-09-09 22:35:30 +0000420{
421 static const GstFormat src_formats[] = {
422 GST_FORMAT_BYTES,
Wim Taymansada49e52003-05-24 10:34:34 +0000423 GST_FORMAT_DEFAULT,
Wim Taymansa7b776e2002-09-09 22:35:30 +0000424 GST_FORMAT_TIME,
425 0
426 };
427 static const GstFormat sink_formats[] = {
428 GST_FORMAT_BYTES,
429 GST_FORMAT_TIME,
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000430 GST_FORMAT_DEFAULT,
Wim Taymansa7b776e2002-09-09 22:35:30 +0000431 0
432 };
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000433
Wim Taymansa7b776e2002-09-09 22:35:30 +0000434 return (GST_PAD_IS_SRC (pad) ? src_formats : sink_formats);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000435}
Wim Taymansa7b776e2002-09-09 22:35:30 +0000436
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000437static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000438gst_dvdec_src_convert (GstPad * pad, GstFormat src_format, gint64 src_value,
439 GstFormat * dest_format, gint64 * dest_value)
Wim Taymansdb816992002-06-16 14:45:46 +0000440{
441 gboolean res = TRUE;
442 GstDVDec *dvdec;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000443
Wim Taymansdb816992002-06-16 14:45:46 +0000444 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
Wim Taymansdb816992002-06-16 14:45:46 +0000445 if (dvdec->length == 0)
446 return FALSE;
447
Wim Taymans4eaa7cc2002-09-09 22:20:34 +0000448 if (dvdec->decoder == NULL)
449 return FALSE;
450
Wim Taymansdb816992002-06-16 14:45:46 +0000451 switch (src_format) {
452 case GST_FORMAT_BYTES:
453 switch (*dest_format) {
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000454 case GST_FORMAT_BYTES:
455 *dest_value = src_value;
456 break;
457 case GST_FORMAT_DEFAULT:
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000458 case GST_FORMAT_TIME:
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000459 *dest_format = GST_FORMAT_TIME;
460 if (pad == dvdec->videosrcpad)
461 *dest_value = src_value * GST_SECOND /
462 (720 * dvdec->height * dvdec->bpp * dvdec->framerate /
463 GST_SECOND);
464 else if (pad == dvdec->audiosrcpad)
465 *dest_value = src_value * GST_SECOND /
Jan Schmidt192579e2004-06-07 12:01:52 +0000466 (2 * dvdec->frequency * dvdec->channels);
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000467 break;
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000468 default:
469 res = FALSE;
Wim Taymansdb816992002-06-16 14:45:46 +0000470 }
471 break;
472 case GST_FORMAT_TIME:
473 switch (*dest_format) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000474 case GST_FORMAT_BYTES:
475 if (pad == dvdec->videosrcpad)
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000476 *dest_value = src_value * 720 * dvdec->height * dvdec->bpp *
477 dvdec->framerate / GST_SECOND;
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000478 else if (pad == dvdec->audiosrcpad)
Jan Schmidt192579e2004-06-07 12:01:52 +0000479 *dest_value = 2 * src_value * dvdec->frequency *
480 dvdec->channels / GST_SECOND;
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000481 break;
482 case GST_FORMAT_TIME:
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000483 case GST_FORMAT_DEFAULT:
Jan Schmidt2d80a4a2004-05-13 11:32:42 +0000484 *dest_format = GST_FORMAT_TIME;
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000485 *dest_value = src_value;
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000486 break;
487 default:
488 res = FALSE;
Wim Taymansdb816992002-06-16 14:45:46 +0000489 }
490 break;
491 default:
492 res = FALSE;
493 }
494 return res;
495}
496
497static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000498gst_dvdec_sink_convert (GstPad * pad, GstFormat src_format, gint64 src_value,
499 GstFormat * dest_format, gint64 * dest_value)
Wim Taymansdb816992002-06-16 14:45:46 +0000500{
501 gboolean res = TRUE;
502 GstDVDec *dvdec;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000503
Wim Taymansdb816992002-06-16 14:45:46 +0000504 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
505
506 if (dvdec->length == 0)
507 return FALSE;
508
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000509 if (*dest_format == GST_FORMAT_DEFAULT)
510 *dest_format = GST_FORMAT_TIME;
511
Wim Taymansdb816992002-06-16 14:45:46 +0000512 switch (src_format) {
513 case GST_FORMAT_BYTES:
514 switch (*dest_format) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000515 case GST_FORMAT_TIME:
516 {
517 guint64 frame;
Wim Taymansada49e52003-05-24 10:34:34 +0000518
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000519 /* get frame number */
520 frame = src_value / dvdec->length;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000521
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000522 *dest_value = (frame * GST_SECOND) / dvdec->framerate;
523 break;
524 }
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000525 case GST_FORMAT_BYTES:
526 *dest_value = src_value;
527 break;
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000528 default:
529 res = FALSE;
Wim Taymansdb816992002-06-16 14:45:46 +0000530 }
531 break;
532 case GST_FORMAT_TIME:
533 switch (*dest_format) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000534 case GST_FORMAT_BYTES:
535 {
536 guint64 frame;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000537
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000538 /* calculate the frame */
539 frame = src_value * dvdec->framerate / GST_SECOND;
540 /* calculate the offset */
541 *dest_value = frame * dvdec->length;
542 break;
543 }
Jan Schmidt4d97abb2004-05-21 13:28:24 +0000544 case GST_FORMAT_TIME:
545 *dest_value = src_value;
546 break;
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000547 default:
548 res = FALSE;
Wim Taymansdb816992002-06-16 14:45:46 +0000549 }
550 break;
551 default:
552 res = FALSE;
553 }
554 return res;
555}
556
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000557static const GstQueryType *
558gst_dvdec_get_src_query_types (GstPad * pad)
559{
Wim Taymans4d36ba72002-12-30 17:53:18 +0000560 static const GstQueryType src_query_types[] = {
561 GST_QUERY_TOTAL,
562 GST_QUERY_POSITION,
Wim Taymansa7b776e2002-09-09 22:35:30 +0000563 0
564 };
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000565
Wim Taymansa7b776e2002-09-09 22:35:30 +0000566 return src_query_types;
567}
568
Wim Taymansdb816992002-06-16 14:45:46 +0000569static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000570gst_dvdec_src_query (GstPad * pad, GstQueryType type,
571 GstFormat * format, gint64 * value)
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000572{
573 gboolean res = TRUE;
574 GstDVDec *dvdec;
575
576 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
577
578 switch (type) {
Wim Taymans4d36ba72002-12-30 17:53:18 +0000579 case GST_QUERY_TOTAL:
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000580 switch (*format) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000581 default:
582 {
583 guint64 len;
584 GstFormat tmp_format;
Wim Taymans9101d972002-06-15 22:30:58 +0000585
Jan Schmidt192579e2004-06-07 12:01:52 +0000586 if (!dvdec->bs)
587 return FALSE;
588
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000589 len = gst_bytestream_length (dvdec->bs);
590 tmp_format = GST_FORMAT_TIME;
591 if (len == -1 || !gst_pad_convert (dvdec->sinkpad,
592 GST_FORMAT_BYTES, len, &tmp_format, value)) {
593 return FALSE;
594 }
595 if (!gst_pad_convert (pad, GST_FORMAT_TIME, *value, format, value)) {
596 return FALSE;
597 }
598 break;
599 }
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000600 }
601 break;
Wim Taymans4d36ba72002-12-30 17:53:18 +0000602 case GST_QUERY_POSITION:
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000603 switch (*format) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000604 default:
605 res =
606 gst_pad_convert (pad, GST_FORMAT_TIME, dvdec->next_ts, format,
607 value);
608 break;
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000609 }
610 break;
611 default:
612 res = FALSE;
613 break;
614 }
615 return res;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000616}
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000617
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000618static const GstEventMask *
619gst_dvdec_get_event_masks (GstPad * pad)
620{
Wim Taymansa7b776e2002-09-09 22:35:30 +0000621 static const GstEventMask src_event_masks[] = {
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000622 {GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH},
623 {0,}
Wim Taymansa7b776e2002-09-09 22:35:30 +0000624 };
625 static const GstEventMask sink_event_masks[] = {
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000626 {GST_EVENT_EOS, 0},
627 {GST_EVENT_DISCONTINUOUS, 0},
628 {GST_EVENT_FLUSH, 0},
629 {0,}
Wim Taymansa7b776e2002-09-09 22:35:30 +0000630 };
631
632 return (GST_PAD_IS_SRC (pad) ? src_event_masks : sink_event_masks);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000633}
Wim Taymansa7b776e2002-09-09 22:35:30 +0000634
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000635static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000636gst_dvdec_handle_sink_event (GstDVDec * dvdec)
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000637{
638 guint32 remaining;
639 GstEvent *event;
640 GstEventType type;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000641
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000642 gst_bytestream_get_status (dvdec->bs, &remaining, &event);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000643
644 type = event ? GST_EVENT_TYPE (event) : GST_EVENT_UNKNOWN;
645
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000646 switch (type) {
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000647 case GST_EVENT_FLUSH:
Jan Schmidt192579e2004-06-07 12:01:52 +0000648 case GST_EVENT_EOS:
649 case GST_EVENT_FILLER:
Jan Schmidta6659f82004-06-07 13:25:14 +0000650 {
Jan Schmidt192579e2004-06-07 12:01:52 +0000651 /* Forward the event to output sinks */
652 if (GST_PAD_IS_LINKED (dvdec->videosrcpad)) {
653 gst_event_ref (event);
654 gst_pad_push (dvdec->videosrcpad, GST_DATA (event));
655 }
656 if (GST_PAD_IS_LINKED (dvdec->audiosrcpad)) {
657 gst_event_ref (event);
658 gst_pad_push (dvdec->audiosrcpad, GST_DATA (event));
659 }
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000660 break;
Jan Schmidta6659f82004-06-07 13:25:14 +0000661 }
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000662 case GST_EVENT_DISCONTINUOUS:
Wim Taymansdb816992002-06-16 14:45:46 +0000663 {
664 gint i;
665 gboolean found = FALSE;
666 GstFormat format;
667
668 format = GST_FORMAT_TIME;
669 /* try to get a timestamp from the discont formats */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000670 for (i = 0; i < GST_EVENT_DISCONT_OFFSET_LEN (event); i++) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000671 if (gst_pad_convert (dvdec->sinkpad,
672 GST_EVENT_DISCONT_OFFSET (event, i).format,
673 GST_EVENT_DISCONT_OFFSET (event, i).value,
674 &format, &dvdec->next_ts)) {
675 found = TRUE;
676 break;
677 }
Wim Taymansdb816992002-06-16 14:45:46 +0000678 }
679 /* assume 0 then */
680 if (!found) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000681 dvdec->next_ts = 0LL;
Wim Taymansdb816992002-06-16 14:45:46 +0000682 }
683 dvdec->need_discont = TRUE;
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000684 break;
Wim Taymansdb816992002-06-16 14:45:46 +0000685 }
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000686 default:
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000687 return gst_pad_event_default (dvdec->sinkpad, event);
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000688 break;
689 }
Wim Taymanseebc2842002-07-08 19:31:05 +0000690 gst_event_unref (event);
Wim Taymans36b7f1a2002-01-26 02:48:47 +0000691 return TRUE;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000692}
693
Wim Taymansdb816992002-06-16 14:45:46 +0000694static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000695gst_dvdec_handle_src_event (GstPad * pad, GstEvent * event)
Wim Taymansdb816992002-06-16 14:45:46 +0000696{
697 gboolean res = TRUE;
698 GstDVDec *dvdec;
699
700 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000701
Wim Taymansdb816992002-06-16 14:45:46 +0000702 switch (GST_EVENT_TYPE (event)) {
Wim Taymans140d2792002-11-02 13:34:42 +0000703 case GST_EVENT_SEEK_SEGMENT:
704 {
705 gint64 position;
706 GstFormat format;
707
708 /* first bring the format to time */
709 format = GST_FORMAT_TIME;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000710 if (!gst_pad_convert (pad,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000711 GST_EVENT_SEEK_FORMAT (event),
712 GST_EVENT_SEEK_ENDOFFSET (event), &format, &position)) {
713 /* could not convert seek format to time offset */
714 res = FALSE;
715 break;
Wim Taymans140d2792002-11-02 13:34:42 +0000716 }
717
718 dvdec->end_position = position;
719 dvdec->loop = GST_EVENT_SEEK_TYPE (event) & GST_SEEK_FLAG_SEGMENT_LOOP;
720 }
Wim Taymansdb816992002-06-16 14:45:46 +0000721 case GST_EVENT_SEEK:
722 {
Wim Taymans140d2792002-11-02 13:34:42 +0000723 gint64 position;
724 GstFormat format;
Wim Taymansdb816992002-06-16 14:45:46 +0000725
Wim Taymans140d2792002-11-02 13:34:42 +0000726 /* first bring the format to time */
727 format = GST_FORMAT_TIME;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000728 if (!gst_pad_convert (pad,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000729 GST_EVENT_SEEK_FORMAT (event),
730 GST_EVENT_SEEK_OFFSET (event), &format, &position)) {
731 /* could not convert seek format to time offset */
732 res = FALSE;
733 break;
Wim Taymans140d2792002-11-02 13:34:42 +0000734 }
Wim Taymansada49e52003-05-24 10:34:34 +0000735 dvdec->next_ts = position;
Wim Taymans140d2792002-11-02 13:34:42 +0000736 /* then try to figure out the byteoffset for this time */
737 format = GST_FORMAT_BYTES;
738 if (!gst_pad_convert (dvdec->sinkpad, GST_FORMAT_TIME, position,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000739 &format, &position)) {
740 /* could not convert seek format to byte offset */
741 res = FALSE;
742 break;
Wim Taymans140d2792002-11-02 13:34:42 +0000743 }
744 /* seek to offset */
745 if (!gst_bytestream_seek (dvdec->bs, position, GST_SEEK_METHOD_SET)) {
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000746 res = FALSE;
Wim Taymans140d2792002-11-02 13:34:42 +0000747 }
Wim Taymansada49e52003-05-24 10:34:34 +0000748 if (GST_EVENT_TYPE (event) != GST_EVENT_SEEK_SEGMENT)
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000749 dvdec->end_position = -1;
Wim Taymans140d2792002-11-02 13:34:42 +0000750 break;
Wim Taymansdb816992002-06-16 14:45:46 +0000751 }
752 default:
753 res = FALSE;
754 break;
755 }
Wim Taymanseebc2842002-07-08 19:31:05 +0000756 gst_event_unref (event);
Wim Taymansdb816992002-06-16 14:45:46 +0000757 return res;
758}
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +0000759
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000760static GstCaps *
761gst_dvdec_video_getcaps (GstPad * pad)
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000762{
763 GstDVDec *dvdec;
764 GstCaps *caps;
765 GstPadTemplate *src_pad_template;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000766
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000767 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
768 src_pad_template = gst_static_pad_template_get (&video_src_temp);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000769 caps = gst_caps_copy (gst_pad_template_get_caps (src_pad_template));
770
771 if (dvdec->found_header) {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000772 int i;
Wim Taymansb4642382004-10-18 14:02:51 +0000773 gint par_x, par_y;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000774
Wim Taymansb4642382004-10-18 14:02:51 +0000775 if (dvdec->PAL) {
Wim Taymanscda34e62004-10-18 17:49:09 +0000776 if (dvdec->wide) {
Wim Taymansb4642382004-10-18 14:02:51 +0000777 par_x = PAL_WIDE_PAR_X;
778 par_y = PAL_WIDE_PAR_Y;
779 } else {
780 par_x = PAL_NORMAL_PAR_X;
781 par_y = PAL_NORMAL_PAR_Y;
782 }
783 } else {
Wim Taymanscda34e62004-10-18 17:49:09 +0000784 if (dvdec->wide) {
Wim Taymansb4642382004-10-18 14:02:51 +0000785 par_x = NTSC_WIDE_PAR_X;
786 par_y = NTSC_WIDE_PAR_Y;
787 } else {
788 par_x = NTSC_NORMAL_PAR_X;
789 par_y = NTSC_NORMAL_PAR_Y;
790 }
791 }
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000792 /* set the height */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000793 for (i = 0; i < gst_caps_get_size (caps); i++) {
794 GstStructure *structure = gst_caps_get_structure (caps, i);
795
796 gst_structure_set (structure,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000797 "height", G_TYPE_INT, dvdec->height,
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000798 "framerate", G_TYPE_DOUBLE, dvdec->framerate / dvdec->drop_factor,
Wim Taymansb4642382004-10-18 14:02:51 +0000799 "pixel-aspect-ratio", GST_TYPE_FRACTION, par_x, par_y, NULL);
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000800 }
801 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000802
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000803 return caps;
804}
805
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000806static GstPadLinkReturn
807gst_dvdec_video_link (GstPad * pad, const GstCaps * caps)
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000808{
809 GstDVDec *dvdec;
810 GstStructure *structure;
811 guint32 fourcc;
812 gint height;
813 gdouble framerate;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000814
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000815 dvdec = GST_DVDEC (gst_pad_get_parent (pad));
816
817 /* if we did not find a header yet, return delayed */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000818 if (!dvdec->found_header) {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000819 return GST_PAD_LINK_DELAYED;
820 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000821
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000822 structure = gst_caps_get_structure (caps, 0);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000823
Jan Schmidte9d76082004-05-07 16:17:25 +0000824 if (!gst_structure_get_int (structure, "height", &height) ||
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000825 !gst_structure_get_double (structure, "framerate", &framerate))
826 return GST_PAD_LINK_REFUSED;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000827
Wim Taymans17d464c2004-10-26 17:59:18 +0000828 /* allow a margin of error for the framerate caused by float rounding errors */
829 if ((height != dvdec->height) ||
830 (fabs (framerate - (dvdec->framerate / dvdec->drop_factor)) > 0.00000001))
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000831 return GST_PAD_LINK_REFUSED;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000832
Jan Schmidte9d76082004-05-07 16:17:25 +0000833 if (strcmp (gst_structure_get_name (structure), "video/x-raw-rgb") == 0) {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000834 gint bpp;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000835
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000836 gst_structure_get_int (structure, "bpp", &bpp);
837 if (bpp == 24) {
838 dvdec->space = e_dv_color_rgb;
839 dvdec->bpp = 3;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000840 } else {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000841 dvdec->space = e_dv_color_bgr0;
842 dvdec->bpp = 4;
843 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000844 } else {
Jan Schmidte9d76082004-05-07 16:17:25 +0000845 if (!gst_structure_get_fourcc (structure, "format", &fourcc))
846 return GST_PAD_LINK_REFUSED;
847
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000848 dvdec->space = e_dv_color_yuv;
849 dvdec->bpp = 2;
850 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000851
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000852 return GST_PAD_LINK_OK;
853}
854
David Schleefc0ada862004-02-05 23:15:00 +0000855static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000856gst_dvdec_push (GstDVDec * dvdec, GstBuffer * outbuf, GstPad * pad,
857 GstClockTime ts)
858{
Jan Schmidt192579e2004-06-07 12:01:52 +0000859 if ((dvdec->need_discont) || (dvdec->new_media)) {
David Schleefc0ada862004-02-05 23:15:00 +0000860 GstEvent *discont;
861
862 discont = gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, ts, NULL);
Jan Schmidt192579e2004-06-07 12:01:52 +0000863 GST_EVENT_DISCONT_NEW_MEDIA (discont) = dvdec->new_media;
864
David Schleefc0ada862004-02-05 23:15:00 +0000865 gst_pad_push (pad, GST_DATA (discont));
866 }
867
868 gst_pad_push (pad, GST_DATA (outbuf));
869
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000870 if ((dvdec->end_position != -1) && (dvdec->next_ts >= dvdec->end_position)) {
871 if (dvdec->loop)
872 gst_pad_push (pad, GST_DATA (gst_event_new (GST_EVENT_SEGMENT_DONE)));
David Schleefc0ada862004-02-05 23:15:00 +0000873 else
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000874 gst_pad_push (pad, GST_DATA (gst_event_new (GST_EVENT_EOS)));
David Schleefc0ada862004-02-05 23:15:00 +0000875 }
Jan Schmidt7ed5a3d2004-02-05 13:16:22 +0000876}
877
David Schleefc0ada862004-02-05 23:15:00 +0000878static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000879gst_dvdec_loop (GstElement * element)
880{
David Schleefc0ada862004-02-05 23:15:00 +0000881 GstDVDec *dvdec;
882 GstBuffer *buf, *outbuf;
883 guint8 *inframe;
884 gint height;
885 guint32 length, got_bytes;
Wim Taymans916be7a2004-06-27 14:42:09 +0000886 GstClockTime ts, duration;
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000887 gdouble fps;
Wim Taymanscda34e62004-10-18 17:49:09 +0000888 gboolean wide;
Jan Schmidt7ed5a3d2004-02-05 13:16:22 +0000889
David Schleefc0ada862004-02-05 23:15:00 +0000890 dvdec = GST_DVDEC (element);
891
Jan Schmidte0006ee2004-04-01 11:48:27 +0000892 /*
893 * Apparently dv_parse_header can read from the body of the frame
894 * too, so it needs more than header_size bytes. Wacky!
895 */
896 if (dvdec->found_header)
897 length = (dvdec->PAL ? PAL_BUFFER : NTSC_BUFFER);
898 else
899 length = NTSC_BUFFER;
900
David Schleefc0ada862004-02-05 23:15:00 +0000901 /* first read enough bytes to parse the header */
Jan Schmidte0006ee2004-04-01 11:48:27 +0000902 got_bytes = gst_bytestream_peek_bytes (dvdec->bs, &inframe, length);
903 if (got_bytes < length) {
David Schleefc0ada862004-02-05 23:15:00 +0000904 gst_dvdec_handle_sink_event (dvdec);
905 return;
906 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000907 if (dv_parse_header (dvdec->decoder, inframe) < 0) {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000908 GST_ELEMENT_ERROR (dvdec, STREAM, DECODE, (NULL), (NULL));
909 return;
910 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000911
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000912 /* after parsing the header we know the length of the data */
David Schleefc0ada862004-02-05 23:15:00 +0000913 dvdec->PAL = dv_system_50_fields (dvdec->decoder);
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000914 dvdec->found_header = TRUE;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000915
David Schleefc0ada862004-02-05 23:15:00 +0000916 fps = (dvdec->PAL ? PAL_FRAMERATE : NTSC_FRAMERATE);
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000917 height = (dvdec->PAL ? PAL_HEIGHT : NTSC_HEIGHT);
David Schleefc0ada862004-02-05 23:15:00 +0000918 length = (dvdec->PAL ? PAL_BUFFER : NTSC_BUFFER);
Wim Taymanscda34e62004-10-18 17:49:09 +0000919 wide = dv_format_wide (dvdec->decoder);
David Schleefc0ada862004-02-05 23:15:00 +0000920
David Schleefc0ada862004-02-05 23:15:00 +0000921 if (length != dvdec->length) {
922 dvdec->length = length;
923 gst_bytestream_size_hint (dvdec->bs, length);
924 }
925
926 /* then read the read data */
927 got_bytes = gst_bytestream_read (dvdec->bs, &buf, length);
928 if (got_bytes < length) {
929 gst_dvdec_handle_sink_event (dvdec);
930 return;
931 }
932
Jan Schmidtea235cb2004-05-12 14:53:57 +0000933 ts = dvdec->next_ts;
Wim Taymanse5bb1f12004-06-27 16:38:41 +0000934 dvdec->next_ts += GST_SECOND / fps;
Wim Taymans916be7a2004-06-27 14:42:09 +0000935 duration = dvdec->next_ts - ts;
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000936
937 dv_parse_packs (dvdec->decoder, GST_BUFFER_DATA (buf));
Jan Schmidt192579e2004-06-07 12:01:52 +0000938 if (dv_is_new_recording (dvdec->decoder, GST_BUFFER_DATA (buf)))
939 dvdec->new_media = TRUE;
Thomas Vander Stichelebe876ae2003-01-10 10:22:25 +0000940 if (GST_PAD_IS_LINKED (dvdec->audiosrcpad)) {
Wim Taymans916be7a2004-06-27 14:42:09 +0000941 gint num_samples;
Wim Taymansdb816992002-06-16 14:45:46 +0000942
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000943 dv_decode_full_audio (dvdec->decoder, GST_BUFFER_DATA (buf),
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000944 dvdec->audio_buffers);
Wim Taymansdb816992002-06-16 14:45:46 +0000945
Jan Schmidt192579e2004-06-07 12:01:52 +0000946 if ((dv_get_frequency (dvdec->decoder) != dvdec->frequency) ||
947 (dv_get_num_channels (dvdec->decoder) != dvdec->channels)) {
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000948 if (!gst_pad_set_explicit_caps (dvdec->audiosrcpad,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000949 gst_caps_new_simple ("audio/x-raw-int",
Jan Schmidt192579e2004-06-07 12:01:52 +0000950 "rate", G_TYPE_INT, dv_get_frequency (dvdec->decoder),
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000951 "depth", G_TYPE_INT, 16,
952 "width", G_TYPE_INT, 16,
953 "signed", G_TYPE_BOOLEAN, TRUE,
Jan Schmidt192579e2004-06-07 12:01:52 +0000954 "channels", G_TYPE_INT, dv_get_num_channels (dvdec->decoder),
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000955 "endianness", G_TYPE_INT, G_LITTLE_ENDIAN, NULL))) {
956 gst_buffer_unref (buf);
Jan Schmidt192579e2004-06-07 12:01:52 +0000957 GST_ELEMENT_ERROR (dvdec, CORE, NEGOTIATION, (NULL),
958 ("Failed to negotiate audio parameters for the DV audio stream"));
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +0000959 return;
Jan Schmidtdd989ba2004-02-07 13:04:09 +0000960 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000961
Jan Schmidt192579e2004-06-07 12:01:52 +0000962 dvdec->frequency = dv_get_frequency (dvdec->decoder);
963 dvdec->channels = dv_get_num_channels (dvdec->decoder);
Wim Taymansdb816992002-06-16 14:45:46 +0000964 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000965
Wim Taymans916be7a2004-06-27 14:42:09 +0000966 num_samples = dv_get_num_samples (dvdec->decoder);
967
968 if (num_samples) {
969 gint16 *a_ptr;
970 gint i, j;
971
Jan Schmidt192579e2004-06-07 12:01:52 +0000972 outbuf = gst_buffer_new ();
973 GST_BUFFER_SIZE (outbuf) = dv_get_num_samples (dvdec->decoder) *
974 sizeof (gint16) * dv_get_num_channels (dvdec->decoder);
975 GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000976
Jan Schmidt192579e2004-06-07 12:01:52 +0000977 a_ptr = (gint16 *) GST_BUFFER_DATA (outbuf);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +0000978
Wim Taymans916be7a2004-06-27 14:42:09 +0000979 for (i = 0; i < num_samples; i++) {
Jan Schmidt192579e2004-06-07 12:01:52 +0000980 for (j = 0; j < dv_get_num_channels (dvdec->decoder); j++) {
981 *(a_ptr++) = dvdec->audio_buffers[j][i];
982 }
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000983 }
Wim Taymans916be7a2004-06-27 14:42:09 +0000984
985 GST_BUFFER_TIMESTAMP (outbuf) = ts;
986 GST_BUFFER_DURATION (outbuf) = duration;
987 GST_BUFFER_OFFSET (outbuf) = dvdec->audio_offset;
988 dvdec->audio_offset += num_samples;
989 GST_BUFFER_OFFSET_END (outbuf) = dvdec->audio_offset;
990
Jan Schmidt192579e2004-06-07 12:01:52 +0000991 gst_dvdec_push (dvdec, outbuf, dvdec->audiosrcpad, ts);
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000992 }
Jan Schmidt192579e2004-06-07 12:01:52 +0000993 } else {
994 dvdec->frequency = dv_get_frequency (dvdec->decoder);
995 dvdec->channels = dv_get_num_channels (dvdec->decoder);
Wim Taymanscdb004a2001-12-23 23:00:59 +0000996 }
Wim Taymansce3fd0b2002-06-13 22:30:15 +0000997
Thomas Vander Stichelebe876ae2003-01-10 10:22:25 +0000998 if (GST_PAD_IS_LINKED (dvdec->videosrcpad)) {
Wim Taymans7f38fbb2002-06-15 14:32:35 +0000999 guint8 *outframe;
1000 guint8 *outframe_ptrs[3];
1001 gint outframe_pitches[3];
1002
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001003 dvdec->framecount++;
1004 if (dvdec->framecount < dvdec->drop_factor) {
1005 /* don't decode */
1006 goto end;
1007 }
1008 dvdec->framecount = 0;
1009
Wim Taymanscda34e62004-10-18 17:49:09 +00001010 if ((dvdec->framerate != fps) || (dvdec->height != height)
1011 || dvdec->wide != wide) {
Jan Schmidtea235cb2004-05-12 14:53:57 +00001012 dvdec->height = height;
1013 dvdec->framerate = fps;
Wim Taymanscda34e62004-10-18 17:49:09 +00001014 dvdec->wide = wide;
Jan Schmidtea235cb2004-05-12 14:53:57 +00001015
1016 if (GST_PAD_LINK_FAILED (gst_pad_renegotiate (dvdec->videosrcpad))) {
1017 GST_ELEMENT_ERROR (dvdec, CORE, NEGOTIATION, (NULL), (NULL));
1018 return;
1019 }
1020 }
1021
David Schleefce51f612003-12-22 01:47:09 +00001022 outbuf = gst_buffer_new_and_alloc ((720 * height) * dvdec->bpp);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001023
Wim Taymans7f38fbb2002-06-15 14:32:35 +00001024 outframe = GST_BUFFER_DATA (outbuf);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001025
Wim Taymans7f38fbb2002-06-15 14:32:35 +00001026 outframe_ptrs[0] = outframe;
Wim Taymans7f38fbb2002-06-15 14:32:35 +00001027 outframe_pitches[0] = 720 * dvdec->bpp;
Wim Taymansb60d0312002-06-16 20:49:22 +00001028
1029 /* the rest only matters for YUY2 */
1030 if (dvdec->bpp < 3) {
1031 outframe_ptrs[1] = outframe_ptrs[0] + 720 * height;
1032 outframe_ptrs[2] = outframe_ptrs[1] + 360 * height;
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001033
Wim Taymansb60d0312002-06-16 20:49:22 +00001034 outframe_pitches[1] = height / 2;
1035 outframe_pitches[2] = outframe_pitches[1];
1036 }
Wim Taymanscdb004a2001-12-23 23:00:59 +00001037
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001038 dv_decode_full_frame (dvdec->decoder, GST_BUFFER_DATA (buf),
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +00001039 dvdec->space, outframe_ptrs, outframe_pitches);
Wim Taymans7f38fbb2002-06-15 14:32:35 +00001040
Wim Taymans916be7a2004-06-27 14:42:09 +00001041 GST_BUFFER_TIMESTAMP (outbuf) = ts;
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001042 GST_BUFFER_DURATION (outbuf) = duration * dvdec->drop_factor;
Wim Taymans916be7a2004-06-27 14:42:09 +00001043
Wim Taymans140d2792002-11-02 13:34:42 +00001044 gst_dvdec_push (dvdec, outbuf, dvdec->videosrcpad, ts);
Jan Schmidt192579e2004-06-07 12:01:52 +00001045 } else {
1046 dvdec->height = height;
1047 dvdec->framerate = fps;
Wim Taymanscda34e62004-10-18 17:49:09 +00001048 dvdec->wide = wide;
Wim Taymans7f38fbb2002-06-15 14:32:35 +00001049 }
1050
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001051end:
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001052 if ((dvdec->end_position != -1) &&
1053 (dvdec->next_ts >= dvdec->end_position) && !dvdec->loop) {
Wim Taymans140d2792002-11-02 13:34:42 +00001054 gst_element_set_eos (GST_ELEMENT (dvdec));
1055 }
Wim Taymansdb816992002-06-16 14:45:46 +00001056
Jan Schmidt192579e2004-06-07 12:01:52 +00001057 dvdec->need_discont = FALSE;
1058 dvdec->new_media = FALSE;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001059
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001060 gst_buffer_unref (buf);
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001061}
1062
1063static GstElementStateReturn
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001064gst_dvdec_change_state (GstElement * element)
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001065{
1066 GstDVDec *dvdec = GST_DVDEC (element);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001067
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001068 switch (GST_STATE_TRANSITION (element)) {
1069 case GST_STATE_NULL_TO_READY:
1070 break;
1071 case GST_STATE_READY_TO_PAUSED:
1072 dvdec->bs = gst_bytestream_new (dvdec->sinkpad);
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001073 dvdec->decoder =
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +00001074 dv_decoder_new (0, dvdec->clamp_luma, dvdec->clamp_chroma);
Jan Schmidtea235cb2004-05-12 14:53:57 +00001075 dvdec->decoder->quality = qualities[dvdec->quality];
Wim Taymans916be7a2004-06-27 14:42:09 +00001076 dvdec->audio_offset = 0;
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001077 dvdec->framecount = 0;
Jan Schmidte0006ee2004-04-01 11:48:27 +00001078 /*
1079 * Enable this function call when libdv2 0.100 or higher is more
1080 * common
1081 */
Jan Schmidtea235cb2004-05-12 14:53:57 +00001082 /* dv_set_quality (dvdec->decoder, qualities [dvdec->quality]); */
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001083 break;
1084 case GST_STATE_PAUSED_TO_PLAYING:
1085 break;
1086 case GST_STATE_PLAYING_TO_PAUSED:
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001087 break;
1088 case GST_STATE_PAUSED_TO_READY:
Wim Taymans4eaa7cc2002-09-09 22:20:34 +00001089 dv_decoder_free (dvdec->decoder);
1090 dvdec->decoder = NULL;
Jan Schmidtdd989ba2004-02-07 13:04:09 +00001091 dvdec->found_header = FALSE;
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001092 gst_bytestream_destroy (dvdec->bs);
Jan Schmidt192579e2004-06-07 12:01:52 +00001093 dvdec->bs = NULL;
Wim Taymans36b7f1a2002-01-26 02:48:47 +00001094 break;
1095 case GST_STATE_READY_TO_NULL:
1096 break;
1097 default:
1098 break;
1099 }
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001100
Jan Schmidt8542a1f2004-05-10 12:19:02 +00001101 return parent_class->change_state (element);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001102}
1103
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001104/* Arguments are part of the Gtk+ object system, and these functions
1105 * enable the element to respond to various arguments.
1106 */
1107static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001108gst_dvdec_set_property (GObject * object, guint prop_id, const GValue * value,
1109 GParamSpec * pspec)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001110{
1111 GstDVDec *dvdec;
1112
1113 /* It's not null if we got it, but it might not be ours */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001114 g_return_if_fail (GST_IS_DVDEC (object));
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001115
1116 /* Get a pointer of the right type. */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001117 dvdec = GST_DVDEC (object);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001118
1119 /* Check the argument id to see which argument we're setting. */
1120 switch (prop_id) {
Wim Taymans4eaa7cc2002-09-09 22:20:34 +00001121 case ARG_CLAMP_LUMA:
1122 dvdec->clamp_luma = g_value_get_boolean (value);
1123 break;
1124 case ARG_CLAMP_CHROMA:
1125 dvdec->clamp_chroma = g_value_get_boolean (value);
1126 break;
1127 case ARG_QUALITY:
Jan Schmidtea235cb2004-05-12 14:53:57 +00001128 dvdec->quality = g_value_get_enum (value);
1129 if ((dvdec->quality < 0) || (dvdec->quality > 5))
1130 dvdec->quality = 0;
Wim Taymans4eaa7cc2002-09-09 22:20:34 +00001131 break;
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001132 case ARG_DECODE_NTH:
1133 dvdec->drop_factor = g_value_get_int (value);
1134 break;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001135 default:
Wim Taymans689fa8a2002-09-12 20:55:10 +00001136 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001137 break;
1138 }
1139}
1140
1141/* The set function is simply the inverse of the get fuction. */
1142static void
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001143gst_dvdec_get_property (GObject * object, guint prop_id, GValue * value,
1144 GParamSpec * pspec)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001145{
1146 GstDVDec *dvdec;
1147
1148 /* It's not null if we got it, but it might not be ours */
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001149 g_return_if_fail (GST_IS_DVDEC (object));
1150 dvdec = GST_DVDEC (object);
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001151
1152 switch (prop_id) {
Wim Taymans4eaa7cc2002-09-09 22:20:34 +00001153 case ARG_CLAMP_LUMA:
1154 g_value_set_boolean (value, dvdec->clamp_luma);
1155 break;
1156 case ARG_CLAMP_CHROMA:
1157 g_value_set_boolean (value, dvdec->clamp_chroma);
1158 break;
1159 case ARG_QUALITY:
Jan Schmidtea235cb2004-05-12 14:53:57 +00001160 g_value_set_enum (value, dvdec->quality);
Wim Taymans4eaa7cc2002-09-09 22:20:34 +00001161 break;
Wim Taymanse5bb1f12004-06-27 16:38:41 +00001162 case ARG_DECODE_NTH:
1163 g_value_set_int (value, dvdec->drop_factor);
1164 break;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001165 default:
1166 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1167 break;
1168 }
1169}
1170
1171/* This is the entry into the plugin itself. When the plugin loads,
1172 * this function is called to register everything that the plugin provides.
1173 */
1174static gboolean
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001175plugin_init (GstPlugin * plugin)
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001176{
Benjamin Ottec9ae4632003-10-28 20:52:41 +00001177 if (!gst_library_load ("gstbytestream"))
1178 return FALSE;
1179
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001180 if (!gst_element_register (plugin, "dvdec", GST_RANK_PRIMARY,
Thomas Vander Stichele6cc1c732004-03-15 19:32:27 +00001181 gst_dvdec_get_type ()))
Jan Schmidtc4ec05b2003-11-02 03:32:31 +00001182 return FALSE;
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001183
Thomas Vander Sticheleb0f5f9a2001-12-23 16:42:33 +00001184 return TRUE;
1185}
1186
Thomas Vander Stichele24aa8232004-03-14 20:54:13 +00001187GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1188 GST_VERSION_MINOR,
1189 "dvdec",
1190 "Uses libdv to decode DV video (libdv.sourceforge.net)",
1191 plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN);