ext/dvdread/dvdreadsrc.c: Don't announce audio or subtitle streams that aren't really...
[platform/upstream/gstreamer.git] / ext / dvdread / dvdreadsrc.c
1 /* GStreamer DVD title source
2  * Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) 2001 Billy Biggs <vektor@dumbterm.net>.
4  * Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include "_stdint.h"
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <string.h>
32 #include <errno.h>
33
34 #include "dvdreadsrc.h"
35
36 #include <gst/gst-i18n-plugin.h>
37
38 GST_DEBUG_CATEGORY_STATIC (gstgst_dvd_read_src_debug);
39 #define GST_CAT_DEFAULT (gstgst_dvd_read_src_debug)
40
41 static void gst_dvd_read_src_do_init (GType dvdreadsrc_type);
42
43 enum
44 {
45   ARG_0,
46   ARG_DEVICE,
47   ARG_TITLE,
48   ARG_CHAPTER,
49   ARG_ANGLE
50 };
51
52 static GstElementDetails gst_dvd_read_src_details = {
53   "DVD Source",
54   "Source/File/DVD",
55   "Access a DVD title/chapter/angle using libdvdread",
56   "Erik Walthinsen <omega@cse.ogi.edu>",
57 };
58
59 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
60     GST_PAD_SRC,
61     GST_PAD_ALWAYS,
62     GST_STATIC_CAPS ("video/mpeg, mpegversion=2, systemstream=(boolean)true"));
63
64 static GstFormat title_format;
65 static GstFormat angle_format;
66 static GstFormat sector_format;
67 static GstFormat chapter_format;
68
69 static gboolean gst_dvd_read_src_start (GstBaseSrc * basesrc);
70 static gboolean gst_dvd_read_src_stop (GstBaseSrc * basesrc);
71 static GstFlowReturn gst_dvd_read_src_create (GstPushSrc * pushsrc,
72     GstBuffer ** buf);
73 static gboolean gst_dvd_read_src_src_query (GstBaseSrc * basesrc,
74     GstQuery * query);
75 static gboolean gst_dvd_read_src_src_event (GstBaseSrc * basesrc,
76     GstEvent * event);
77 static gboolean gst_dvd_read_src_goto_title (GstDvdReadSrc * src, gint title,
78     gint angle);
79 static gboolean gst_dvd_read_src_goto_chapter (GstDvdReadSrc * src,
80     gint chapter);
81 static gboolean gst_dvd_read_src_goto_sector (GstDvdReadSrc * src, gint angle);
82 static void gst_dvd_read_src_set_property (GObject * object, guint prop_id,
83     const GValue * value, GParamSpec * pspec);
84 static void gst_dvd_read_src_get_property (GObject * object, guint prop_id,
85     GValue * value, GParamSpec * pspec);
86 static GstEvent *gst_dvd_read_src_make_clut_change_event (GstDvdReadSrc * src,
87     const guint * clut);
88 static gboolean gst_dvd_read_src_get_size (GstDvdReadSrc * src, gint64 * size);
89 static gboolean gst_dvd_read_src_do_seek (GstBaseSrc * src, GstSegment * s);
90 static gint64 gst_dvd_read_src_convert_timecode (dvd_time_t * time);
91 static gint gst_dvd_read_src_get_next_cell (GstDvdReadSrc * src,
92     pgc_t * pgc, gint cell);
93 static GstClockTime gst_dvd_read_src_get_time_for_sector (GstDvdReadSrc * src,
94     guint sector);
95 static gint gst_dvd_read_src_get_sector_from_time (GstDvdReadSrc * src,
96     GstClockTime ts);
97
98 GST_BOILERPLATE_FULL (GstDvdReadSrc, gst_dvd_read_src, GstPushSrc,
99     GST_TYPE_PUSH_SRC, gst_dvd_read_src_do_init);
100
101 static void
102 gst_dvd_read_src_base_init (gpointer g_class)
103 {
104   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
105
106   gst_element_class_add_pad_template (element_class,
107       gst_static_pad_template_get (&srctemplate));
108
109   gst_element_class_set_details (element_class, &gst_dvd_read_src_details);
110 }
111
112 static void
113 gst_dvd_read_src_finalize (GObject * object)
114 {
115   GstDvdReadSrc *src = GST_DVD_READ_SRC (object);
116
117   g_free (src->location);
118   g_free (src->last_uri);
119
120   G_OBJECT_CLASS (parent_class)->finalize (object);
121 }
122
123 static void
124 gst_dvd_read_src_init (GstDvdReadSrc * src, GstDvdReadSrcClass * klass)
125 {
126   src->dvd = NULL;
127   src->vts_file = NULL;
128   src->vmg_file = NULL;
129   src->dvd_title = NULL;
130
131   src->location = g_strdup ("/dev/dvd");
132   src->last_uri = NULL;
133   src->new_seek = TRUE;
134   src->new_cell = TRUE;
135   src->change_cell = FALSE;
136   src->uri_title = 1;
137   src->uri_chapter = 1;
138   src->uri_angle = 1;
139
140   src->title_lang_event_pending = NULL;
141   src->pending_clut_event = NULL;
142
143   gst_pad_use_fixed_caps (GST_BASE_SRC_PAD (src));
144   gst_pad_set_caps (GST_BASE_SRC_PAD (src),
145       gst_static_pad_template_get_caps (&srctemplate));
146 }
147
148 static gboolean
149 gst_dvd_read_src_is_seekable (GstBaseSrc * src)
150 {
151   return TRUE;
152 }
153
154 static void
155 gst_dvd_read_src_class_init (GstDvdReadSrcClass * klass)
156 {
157   GstPushSrcClass *gstpushsrc_class = GST_PUSH_SRC_CLASS (klass);
158   GstBaseSrcClass *gstbasesrc_class = GST_BASE_SRC_CLASS (klass);
159   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
160
161   gobject_class->finalize = gst_dvd_read_src_finalize;
162   gobject_class->set_property = gst_dvd_read_src_set_property;
163   gobject_class->get_property = gst_dvd_read_src_get_property;
164
165   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DEVICE,
166       g_param_spec_string ("device", "Device",
167           "DVD device location", NULL, G_PARAM_READWRITE));
168   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TITLE,
169       g_param_spec_int ("title", "title", "title",
170           1, 999, 1, G_PARAM_READWRITE));
171   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CHAPTER,
172       g_param_spec_int ("chapter", "chapter", "chapter",
173           1, 999, 1, G_PARAM_READWRITE));
174   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ANGLE,
175       g_param_spec_int ("angle", "angle", "angle",
176           1, 999, 1, G_PARAM_READWRITE));
177
178   gstbasesrc_class->start = GST_DEBUG_FUNCPTR (gst_dvd_read_src_start);
179   gstbasesrc_class->stop = GST_DEBUG_FUNCPTR (gst_dvd_read_src_stop);
180   gstbasesrc_class->query = GST_DEBUG_FUNCPTR (gst_dvd_read_src_src_query);
181   gstbasesrc_class->event = GST_DEBUG_FUNCPTR (gst_dvd_read_src_src_event);
182   gstbasesrc_class->do_seek = GST_DEBUG_FUNCPTR (gst_dvd_read_src_do_seek);
183   gstbasesrc_class->is_seekable =
184       GST_DEBUG_FUNCPTR (gst_dvd_read_src_is_seekable);
185
186   gstpushsrc_class->create = GST_DEBUG_FUNCPTR (gst_dvd_read_src_create);
187 }
188
189 static gboolean
190 gst_dvd_read_src_start (GstBaseSrc * basesrc)
191 {
192   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
193
194   g_return_val_if_fail (src->location != NULL, FALSE);
195
196   GST_DEBUG_OBJECT (src, "Opening DVD '%s'", src->location);
197
198   if ((src->dvd = DVDOpen (src->location)) == NULL)
199     goto open_failed;
200
201   /* Load the video manager to find out the information about the titles */
202   GST_DEBUG_OBJECT (src, "Loading VMG info");
203
204   if (!(src->vmg_file = ifoOpen (src->dvd, 0)))
205     goto ifo_open_failed;
206
207   src->tt_srpt = src->vmg_file->tt_srpt;
208
209   src->title = src->uri_title - 1;
210   src->chapter = src->uri_chapter - 1;
211   src->angle = src->uri_angle - 1;
212
213   if (!gst_dvd_read_src_goto_title (src, src->title, src->angle))
214     goto title_open_failed;
215
216   if (!gst_dvd_read_src_goto_chapter (src, src->chapter))
217     goto chapter_open_failed;
218
219   src->new_seek = FALSE;
220   src->change_cell = TRUE;
221
222   return TRUE;
223
224   /* ERRORS */
225 open_failed:
226   {
227     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
228         (_("Could not open DVD")),
229         ("DVDOpen(%s) failed: %s", src->location, g_strerror (errno)));
230     return FALSE;
231   }
232 ifo_open_failed:
233   {
234     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
235         (_("Could not open DVD")),
236         ("ifoOpen() failed: %s", g_strerror (errno)));
237     return FALSE;
238   }
239 title_open_failed:
240   {
241     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
242         (_("Could not open DVD title %d"), src->uri_title), (NULL));
243     return FALSE;
244   }
245 chapter_open_failed:
246   {
247     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
248         (_("Failed to go to chapter %d of DVD title %d"),
249             src->uri_chapter, src->uri_title), (NULL));
250     return FALSE;
251   }
252 }
253
254 static gboolean
255 gst_dvd_read_src_stop (GstBaseSrc * basesrc)
256 {
257   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
258
259   if (src->vts_file) {
260     ifoClose (src->vts_file);
261     src->vts_file = NULL;
262   }
263   if (src->vmg_file) {
264     ifoClose (src->vmg_file);
265     src->vmg_file = NULL;
266   }
267   if (src->dvd_title) {
268     DVDCloseFile (src->dvd_title);
269     src->dvd_title = NULL;
270   }
271   if (src->dvd) {
272     DVDClose (src->dvd);
273     src->dvd = NULL;
274   }
275   src->new_cell = TRUE;
276   src->new_seek = TRUE;
277   src->change_cell = FALSE;
278   src->chapter = 0;
279   src->title = 0;
280   src->need_newsegment = TRUE;
281   src->vts_tmapt = NULL;
282   if (src->title_lang_event_pending) {
283     gst_event_unref (src->title_lang_event_pending);
284     src->title_lang_event_pending = NULL;
285   }
286   if (src->pending_clut_event) {
287     gst_event_unref (src->pending_clut_event);
288     src->pending_clut_event = NULL;
289   }
290   if (src->chapter_starts) {
291     g_free (src->chapter_starts);
292     src->chapter_starts = NULL;
293   }
294
295   GST_LOG_OBJECT (src, "closed DVD");
296
297   return TRUE;
298 }
299
300 static void
301 cur_title_get_chapter_pgc (GstDvdReadSrc * src, gint chapter, gint * p_pgn,
302     gint * p_pgc_id, pgc_t ** p_pgc)
303 {
304   pgc_t *pgc;
305   gint pgn, pgc_id;
306
307   g_assert (chapter >= 0 && chapter < src->num_chapters);
308
309   pgc_id = src->vts_ptt_srpt->title[src->ttn - 1].ptt[chapter].pgcn;
310   pgn = src->vts_ptt_srpt->title[src->ttn - 1].ptt[chapter].pgn;
311   pgc = src->vts_file->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
312
313   *p_pgn = pgn;
314   *p_pgc_id = pgc_id;
315   *p_pgc = pgc;
316 }
317
318 static void
319 cur_title_get_chapter_bounds (GstDvdReadSrc * src, gint chapter,
320     gint * p_first_cell, gint * p_last_cell)
321 {
322   pgc_t *pgc;
323   gint pgn, pgc_id, pgn_next_ch;
324
325   g_assert (chapter >= 0 && chapter < src->num_chapters);
326
327   cur_title_get_chapter_pgc (src, chapter, &pgn, &pgc_id, &pgc);
328
329   *p_first_cell = pgc->program_map[pgn - 1] - 1;
330
331   if (chapter == (src->num_chapters - 1)) {
332     *p_last_cell = pgc->nr_of_cells;
333   } else {
334     pgn_next_ch = src->vts_ptt_srpt->title[src->ttn - 1].ptt[chapter + 1].pgn;
335     *p_last_cell = pgc->program_map[pgn_next_ch - 1] - 1;
336   }
337 }
338
339 static gboolean
340 gst_dvd_read_src_goto_chapter (GstDvdReadSrc * src, gint chapter)
341 {
342   gint i;
343
344   /* make sure the chapter number is valid for this title */
345   if (chapter < 0 || chapter >= src->num_chapters) {
346     GST_WARNING_OBJECT (src, "invalid chapter %d (only %d available)",
347         chapter, src->num_chapters);
348     chapter = CLAMP (chapter, 0, src->num_chapters - 1);
349   }
350
351   /* determine which program chain we want to watch. This is
352    * based on the chapter number */
353   cur_title_get_chapter_pgc (src, chapter, &src->pgn, &src->pgc_id,
354       &src->cur_pgc);
355   cur_title_get_chapter_bounds (src, chapter, &src->start_cell,
356       &src->last_cell);
357
358   GST_LOG_OBJECT (src, "Opened chapter %d - cell %d-%d", chapter + 1,
359       src->start_cell, src->last_cell);
360
361   /* retrieve position */
362   src->cur_pack = 0;
363   for (i = 0; i < chapter; i++) {
364     gint c1, c2;
365
366     cur_title_get_chapter_bounds (src, i, &c1, &c2);
367
368     while (c1 < c2) {
369       src->cur_pack +=
370           src->cur_pgc->cell_playback[c1].last_sector -
371           src->cur_pgc->cell_playback[c1].first_sector;
372       ++c1;
373     }
374   }
375
376   /* prepare reading for new cell */
377   src->new_cell = TRUE;
378   src->next_cell = src->start_cell;
379
380   src->chapter = chapter;
381
382   if (src->pending_clut_event)
383     gst_event_unref (src->pending_clut_event);
384
385   src->pending_clut_event =
386       gst_dvd_read_src_make_clut_change_event (src, src->cur_pgc->palette);
387
388   return TRUE;
389 }
390
391 static void
392 gst_dvd_read_src_get_chapter_starts (GstDvdReadSrc * src)
393 {
394   GstClockTime uptohere;
395   guint c;
396
397   g_free (src->chapter_starts);
398   src->chapter_starts = g_new (GstClockTime, src->num_chapters);
399
400   uptohere = (GstClockTime) 0;
401   for (c = 0; c < src->num_chapters; ++c) {
402     GstClockTime chapter_duration = 0;
403     gint cell_start, cell_end, cell;
404     gint pgn, pgc_id;
405     pgc_t *pgc;
406
407     cur_title_get_chapter_pgc (src, c, &pgn, &pgc_id, &pgc);
408     cur_title_get_chapter_bounds (src, c, &cell_start, &cell_end);
409
410     cell = cell_start;
411     while (cell < cell_end) {
412       dvd_time_t *cell_duration;
413
414       cell_duration = &pgc->cell_playback[cell].playback_time;
415       chapter_duration += gst_dvd_read_src_convert_timecode (cell_duration);
416       cell = gst_dvd_read_src_get_next_cell (src, pgc, cell);
417     }
418
419     src->chapter_starts[c] = uptohere;
420
421     GST_INFO_OBJECT (src, "[%02u] Chapter %02u starts at %" GST_TIME_FORMAT
422         ", dur = %" GST_TIME_FORMAT ", cells %d-%d", src->title + 1, c + 1,
423         GST_TIME_ARGS (uptohere), GST_TIME_ARGS (chapter_duration),
424         cell_start, cell_end);
425
426     uptohere += chapter_duration;
427   }
428 }
429
430 static gboolean
431 gst_dvd_read_src_goto_title (GstDvdReadSrc * src, gint title, gint angle)
432 {
433   GstStructure *s;
434   gchar lang_code[3] = { '\0', '\0', '\0' }, *t;
435   pgc_t *pgc0;
436   gint title_set_nr;
437   gint num_titles;
438   gint pgn0, pgc0_id;
439   gint i;
440
441   /* make sure our title number is valid */
442   num_titles = src->tt_srpt->nr_of_srpts;
443   GST_INFO_OBJECT (src, "There are %d titles on this DVD", num_titles);
444   if (title < 0 || title >= num_titles)
445     goto invalid_title;
446
447   src->num_chapters = src->tt_srpt->title[title].nr_of_ptts;
448   GST_INFO_OBJECT (src, "Title %d has %d chapters", title + 1,
449       src->num_chapters);
450
451   /* make sure the angle number is valid for this title */
452   src->num_angles = src->tt_srpt->title[title].nr_of_angles;
453   GST_LOG_OBJECT (src, "Title %d has %d angles", title + 1, src->num_angles);
454   if (angle < 0 || angle >= src->num_angles) {
455     GST_WARNING_OBJECT (src, "Invalid angle %d (only %d available)",
456         angle, src->num_angles);
457     angle = CLAMP (angle, 0, src->num_angles - 1);
458   }
459
460   /* load the VTS information for the title set our title is in */
461   title_set_nr = src->tt_srpt->title[title].title_set_nr;
462   src->vts_file = ifoOpen (src->dvd, title_set_nr);
463   if (src->vts_file == NULL)
464     goto ifo_open_failed;
465
466   src->ttn = src->tt_srpt->title[title].vts_ttn;
467   src->vts_ptt_srpt = src->vts_file->vts_ptt_srpt;
468
469   /* interactive title? */
470   if (src->num_chapters > 0 &&
471       src->vts_ptt_srpt->title[src->ttn - 1].ptt[0].pgn == 0) {
472     goto commands_only_pgc;
473   }
474
475   /* we've got enough info, time to open the title set data */
476   src->dvd_title = DVDOpenFile (src->dvd, title_set_nr, DVD_READ_TITLE_VOBS);
477   if (src->dvd_title == NULL)
478     goto title_open_failed;
479
480   GST_INFO_OBJECT (src, "Opened title %d, angle %d", title + 1, angle);
481   src->title = title;
482   src->angle = angle;
483
484   /* build event */
485
486   if (src->title_lang_event_pending) {
487     gst_event_unref (src->title_lang_event_pending);
488     src->title_lang_event_pending = NULL;
489   }
490
491   s = gst_structure_new ("application/x-gst-dvd",
492       "event", G_TYPE_STRING, "dvd-lang-codes", NULL);
493
494   /* so we can filter out invalid/unused streams (same for all chapters) */
495   cur_title_get_chapter_pgc (src, 0, &pgn0, &pgc0_id, &pgc0);
496
497   /* audio */
498   for (i = 0; i < src->vts_file->vtsi_mat->nr_of_vts_audio_streams; i++) {
499     const audio_attr_t *a;
500
501     /* audio stream present? */
502     if (pgc0 != NULL && (pgc0->audio_control[i] & 0x8000) == 0)
503       continue;
504
505     a = &src->vts_file->vtsi_mat->vts_audio_attr[i];
506
507     t = g_strdup_printf ("audio-%d-format", i);
508     gst_structure_set (s, t, G_TYPE_INT, (int) a->audio_format, NULL);
509     g_free (t);
510
511     if (a->lang_type) {
512       t = g_strdup_printf ("audio-%d-language", i);
513       lang_code[0] = (a->lang_code >> 8) & 0xff;
514       lang_code[1] = a->lang_code & 0xff;
515       gst_structure_set (s, t, G_TYPE_STRING, lang_code, NULL);
516       g_free (t);
517     } else {
518       lang_code[0] = '\0';
519     }
520
521     GST_INFO_OBJECT (src, "[%02d] Audio    %02d: lang='%s', format=%d",
522         src->title + 1, i, lang_code, (gint) a->audio_format);
523   }
524
525   /* subtitle */
526   for (i = 0; i < src->vts_file->vtsi_mat->nr_of_vts_subp_streams; i++) {
527     const subp_attr_t *u;
528
529     /* subpicture stream present? */
530     if (pgc0 != NULL && (pgc0->subp_control[i] & 0x80000000) == 0)
531       continue;
532
533     u = &src->vts_file->vtsi_mat->vts_subp_attr[i];
534
535     if (u->type) {
536       t = g_strdup_printf ("subtitle-%d-language", i);
537       lang_code[0] = (u->lang_code >> 8) & 0xff;
538       lang_code[1] = u->lang_code & 0xff;
539       gst_structure_set (s, t, G_TYPE_STRING, lang_code, NULL);
540       g_free (t);
541     } else {
542       lang_code[0] = '\0';
543     }
544
545     GST_INFO_OBJECT (src, "[%02d] Subtitle %02d: lang='%s', type=%d",
546         src->title + 1, i, lang_code, u->type);
547   }
548
549   src->title_lang_event_pending =
550       gst_event_new_custom (GST_EVENT_CUSTOM_DOWNSTREAM, s);
551
552   /* dump seek tables */
553   src->vts_tmapt = src->vts_file->vts_tmapt;
554   if (src->vts_tmapt) {
555     gint i, j;
556
557     GST_LOG_OBJECT (src, "nr_of_tmaps = %d", src->vts_tmapt->nr_of_tmaps);
558     for (i = 0; i < src->vts_tmapt->nr_of_tmaps; ++i) {
559       GST_LOG_OBJECT (src, "======= Table %d ===================", i);
560       GST_LOG_OBJECT (src, "Offset relative to VTS_TMAPTI: %d",
561           src->vts_tmapt->tmap_offset[i]);
562       GST_LOG_OBJECT (src, "Time unit (seconds)          : %d",
563           src->vts_tmapt->tmap[i].tmu);
564       GST_LOG_OBJECT (src, "Number of entries            : %d",
565           src->vts_tmapt->tmap[i].nr_of_entries);
566       for (j = 0; j < src->vts_tmapt->tmap[i].nr_of_entries; j++) {
567         guint64 time;
568
569         time = src->vts_tmapt->tmap[i].tmu * (j + 1) * GST_SECOND;
570         GST_LOG_OBJECT (src, "Time: %" GST_TIME_FORMAT " VOBU "
571             "Sector: 0x%08x %s", GST_TIME_ARGS (time),
572             src->vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff,
573             (src->vts_tmapt->tmap[i].map_ent[j] >> 31) ? "discontinuity" : "");
574       }
575     }
576   } else {
577     GST_WARNING_OBJECT (src, "no vts_tmapt - seeking will suck");
578   }
579
580   gst_dvd_read_src_get_chapter_starts (src);
581
582   return TRUE;
583
584   /* ERRORS */
585 invalid_title:
586   {
587     GST_WARNING_OBJECT (src, "Invalid title %d (only %d available)",
588         title, num_titles);
589     return FALSE;
590   }
591 ifo_open_failed:
592   {
593     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
594         (_("Could not open DVD title %d"), title_set_nr),
595         ("ifoOpen(%d) failed: %s", title_set_nr, g_strerror (errno)));
596     return FALSE;
597   }
598 title_open_failed:
599   {
600     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
601         (_("Could not open DVD title %d"), title_set_nr),
602         ("Can't open title VOBS (VTS_%02d_1.VOB)", title_set_nr));
603     return FALSE;
604   }
605 commands_only_pgc:
606   {
607     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ,
608         (_("Could not open DVD title %d. Interactive titles are not supported "
609                 "by this element"), title_set_nr),
610         ("Commands-only PGC, not supported, use dvdnavsrc"));
611     return FALSE;
612   }
613 }
614
615 /* FIXME: double-check this function, compare against original */
616 static gint
617 gst_dvd_read_src_get_next_cell (GstDvdReadSrc * src, pgc_t * pgc, gint cell)
618 {
619   /* Check if we're entering an angle block. */
620   if (pgc->cell_playback[cell].block_type != BLOCK_TYPE_ANGLE_BLOCK)
621     return (cell + 1);
622
623   while (pgc->cell_playback[cell].block_mode == BLOCK_MODE_LAST_CELL)
624     ++cell;
625
626   return cell + 1;              /* really +1? (tpm) */
627 }
628
629 /* Returns true if the pack is a NAV pack */
630 static gboolean
631 gst_dvd_read_src_is_nav_pack (const guint8 * data)
632 {
633   if (GST_READ_UINT32_BE (data + 0x26) != 0x000001BF)
634     return FALSE;
635
636   /* Check that this is substream 0 (PCI) */
637   if (data[0x2c] != 0)
638     return FALSE;
639
640   if (GST_READ_UINT32_BE (data + 0x400) != 0x000001BF)
641     return FALSE;
642
643   /* Check that this is substream 1 (DSI) */
644   if (data[0x406] != 1)
645     return FALSE;
646
647   /* Check sizes of PCI and DSI packets */
648   if (GST_READ_UINT16_BE (data + 0x2a) != 0x03d4)
649     return FALSE;
650
651   if (GST_READ_UINT16_BE (data + 0x404) != 0x03fa)
652     return FALSE;
653
654   return TRUE;
655 }
656
657 /* find time for sector from index, returns NONE if there is no exact match */
658 static GstClockTime
659 gst_dvd_read_src_get_time_for_sector (GstDvdReadSrc * src, guint sector)
660 {
661   gint i, j;
662
663   if (src->vts_tmapt == NULL || src->vts_tmapt->nr_of_tmaps == 0)
664     return GST_CLOCK_TIME_NONE;
665
666   for (i = 0; i < src->vts_tmapt->nr_of_tmaps; ++i) {
667     for (j = 0; j < src->vts_tmapt->tmap[i].nr_of_entries; ++j) {
668       if ((src->vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff) == sector)
669         return src->vts_tmapt->tmap[i].tmu * (j + 1) * GST_SECOND;
670     }
671   }
672
673   if (sector == 0)
674     return (GstClockTime) 0;
675
676   return GST_CLOCK_TIME_NONE;
677 }
678
679 /* returns the sector in the index at (or before) the given time, or -1 */
680 static gint
681 gst_dvd_read_src_get_sector_from_time (GstDvdReadSrc * src, GstClockTime ts)
682 {
683   gint sector, i, j;
684
685   if (src->vts_tmapt == NULL || src->vts_tmapt->nr_of_tmaps == 0)
686     return -1;
687
688   sector = 0;
689   for (i = 0; i < src->vts_tmapt->nr_of_tmaps; ++i) {
690     for (j = 0; j < src->vts_tmapt->tmap[i].nr_of_entries; ++j) {
691       GstClockTime entry_time;
692
693       entry_time = src->vts_tmapt->tmap[i].tmu * (j + 1) * GST_SECOND;
694       if (entry_time <= ts) {
695         sector = src->vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff;
696       }
697       if (entry_time >= ts) {
698         return sector;
699       }
700     }
701   }
702
703   if (ts == 0)
704     return 0;
705
706   return -1;
707 }
708
709 typedef enum
710 {
711   GST_DVD_READ_OK = 0,
712   GST_DVD_READ_ERROR = -1,
713   GST_DVD_READ_EOS = -2,
714   GST_DVD_READ_AGAIN = -3
715 } GstDvdReadReturn;
716
717 static GstDvdReadReturn
718 gst_dvd_read_src_read (GstDvdReadSrc * src, gint angle, gint new_seek,
719     GstBuffer ** p_buf)
720 {
721   GstBuffer *buf;
722   guint8 oneblock[DVD_VIDEO_LB_LEN];
723   dsi_t dsi_pack;
724   guint next_vobu, next_ilvu_start, cur_output_size;
725   gint len;
726
727   /* playback by cell in this pgc, starting at the cell for our chapter */
728   if (new_seek)
729     src->cur_cell = src->start_cell;
730
731 again:
732
733   if (src->cur_cell >= src->last_cell) {
734     /* advance to next chapter */
735     if (src->chapter == (src->num_chapters - 1))
736       goto eos;
737
738     GST_INFO_OBJECT (src, "end of chapter %d, switch to next",
739         src->chapter + 1);
740
741     ++src->chapter;
742     gst_dvd_read_src_goto_chapter (src, src->chapter);
743
744     return GST_DVD_READ_AGAIN;
745   }
746
747   if (src->new_cell || new_seek) {
748     if (!new_seek) {
749       src->cur_cell = src->next_cell;
750       if (src->cur_cell >= src->last_cell) {
751         GST_LOG_OBJECT (src, "last cell in chapter");
752         goto again;
753       }
754     }
755
756     /* take angle into account */
757     if (src->cur_pgc->cell_playback[src->cur_cell].block_type
758         == BLOCK_TYPE_ANGLE_BLOCK)
759       src->cur_cell += angle;
760
761     /* calculate next cell */
762     src->next_cell =
763         gst_dvd_read_src_get_next_cell (src, src->cur_pgc, src->cur_cell);
764
765     /* we loop until we're out of this cell */
766     src->cur_pack = src->cur_pgc->cell_playback[src->cur_cell].first_sector;
767     src->new_cell = FALSE;
768   }
769
770   if (src->cur_pack >= src->cur_pgc->cell_playback[src->cur_cell].last_sector) {
771     src->new_cell = TRUE;
772     GST_LOG_OBJECT (src, "Beyond last sector, go to next cell");
773     return GST_DVD_READ_AGAIN;
774   }
775
776   /* read NAV packet */
777 nav_retry:
778
779   len = DVDReadBlocks (src->dvd_title, src->cur_pack, 1, oneblock);
780   if (len == 0)
781     goto read_error;
782
783   if (!gst_dvd_read_src_is_nav_pack (oneblock)) {
784     src->cur_pack++;
785     goto nav_retry;
786   }
787
788   /* parse the contained dsi packet */
789   navRead_DSI (&dsi_pack, &oneblock[DSI_START_BYTE]);
790   g_assert (src->cur_pack == dsi_pack.dsi_gi.nv_pck_lbn);
791
792   /* determine where we go next. These values are the ones we
793    * mostly care about */
794   next_ilvu_start = src->cur_pack + dsi_pack.sml_agli.data[angle].address;
795   cur_output_size = dsi_pack.dsi_gi.vobu_ea;
796
797   /* If we're not at the end of this cell, we can determine the next
798    * VOBU to display using the VOBU_SRI information section of the
799    * DSI.  Using this value correctly follows the current angle,
800    * avoiding the doubled scenes in The Matrix, and makes our life
801    * really happy.
802    *
803    * Otherwise, we set our next address past the end of this cell to
804    * force the code above to go to the next cell in the program. */
805   if (dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL) {
806     next_vobu = src->cur_pack + (dsi_pack.vobu_sri.next_vobu & 0x7fffffff);
807   } else {
808     next_vobu = src->cur_pack + cur_output_size + 1;
809   }
810
811   g_assert (cur_output_size < 1024);
812   ++src->cur_pack;
813
814   /* create the buffer (TODO: use buffer pool?) */
815   buf = gst_buffer_new_and_alloc (cur_output_size * DVD_VIDEO_LB_LEN);
816
817   /* read in and output cursize packs */
818   len = DVDReadBlocks (src->dvd_title, src->cur_pack, cur_output_size,
819       GST_BUFFER_DATA (buf));
820
821   if (len != cur_output_size)
822     goto block_read_error;
823
824   GST_BUFFER_SIZE (buf) = cur_output_size * DVD_VIDEO_LB_LEN;
825   /* GST_BUFFER_OFFSET (buf) = priv->cur_pack * DVD_VIDEO_LB_LEN; */
826   GST_BUFFER_TIMESTAMP (buf) =
827       gst_dvd_read_src_get_time_for_sector (src, src->cur_pack);
828
829   gst_buffer_set_caps (buf, GST_PAD_CAPS (GST_BASE_SRC_PAD (src)));
830
831   *p_buf = buf;
832
833   src->cur_pack = next_vobu;
834
835   GST_LOG_OBJECT (src, "Read %u sectors", cur_output_size);
836
837   return GST_DVD_READ_OK;
838
839   /* ERRORS */
840 eos:
841   {
842     GST_INFO_OBJECT (src, "last chapter done - EOS");
843     return GST_DVD_READ_EOS;
844   }
845 read_error:
846   {
847     GST_ERROR_OBJECT (src, "Read failed for block %d", src->cur_pack);
848     return GST_DVD_READ_ERROR;
849   }
850 block_read_error:
851   {
852     GST_ERROR_OBJECT (src, "Read failed for %d blocks at %d",
853         cur_output_size, src->cur_pack);
854     gst_buffer_unref (buf);
855     return GST_DVD_READ_ERROR;
856   }
857 }
858
859 static GstFlowReturn
860 gst_dvd_read_src_create (GstPushSrc * pushsrc, GstBuffer ** p_buf)
861 {
862   GstDvdReadSrc *src = GST_DVD_READ_SRC (pushsrc);
863   GstPad *srcpad;
864   gint res;
865
866   g_return_val_if_fail (src->dvd != NULL, GST_FLOW_ERROR);
867
868   srcpad = GST_BASE_SRC (src)->srcpad;
869
870   if (src->need_newsegment) {
871     gst_pad_push_event (srcpad,
872         gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_BYTES,
873             src->cur_pack * DVD_VIDEO_LB_LEN, -1, 0));
874     src->need_newsegment = FALSE;
875   }
876
877   if (src->new_seek) {
878     gst_dvd_read_src_goto_title (src, src->title, src->angle);
879     gst_dvd_read_src_goto_chapter (src, src->chapter);
880
881     src->new_seek = FALSE;
882     src->change_cell = TRUE;
883   }
884
885   if (src->title_lang_event_pending) {
886     gst_pad_push_event (srcpad, src->title_lang_event_pending);
887     src->title_lang_event_pending = NULL;
888   }
889
890   if (src->pending_clut_event) {
891     gst_pad_push_event (srcpad, src->pending_clut_event);
892     src->pending_clut_event = NULL;
893   }
894
895   /* read it in */
896   do {
897     res = gst_dvd_read_src_read (src, src->angle, src->change_cell, p_buf);
898   } while (res == GST_DVD_READ_AGAIN);
899
900   switch (res) {
901     case GST_DVD_READ_ERROR:{
902       GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL), (NULL));
903       return GST_FLOW_ERROR;
904     }
905     case GST_DVD_READ_EOS:{
906       GST_INFO_OBJECT (src, "Reached EOS");
907       return GST_FLOW_UNEXPECTED;
908     }
909     case GST_DVD_READ_OK:{
910       src->change_cell = FALSE;
911       return GST_FLOW_OK;
912     }
913     default:
914       break;
915   }
916
917   g_return_val_if_reached (GST_FLOW_UNEXPECTED);
918 }
919
920 static void
921 gst_dvd_read_src_set_property (GObject * object, guint prop_id,
922     const GValue * value, GParamSpec * pspec)
923 {
924   GstDvdReadSrc *src = GST_DVD_READ_SRC (object);
925   gboolean started;
926
927   GST_OBJECT_LOCK (src);
928   started = GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED);
929
930   switch (prop_id) {
931     case ARG_DEVICE:{
932       if (started) {
933         g_warning ("%s: property '%s' needs to be set before the device is "
934             "opened", GST_ELEMENT_NAME (src), pspec->name);
935         break;;
936       }
937
938       g_free (src->location);
939       /* clear the filename if we get a NULL (is that possible?) */
940       if (g_value_get_string (value) == NULL) {
941         src->location = g_strdup ("/dev/dvd");
942       } else {
943         src->location = g_strdup (g_value_get_string (value));
944       }
945       break;
946     }
947     case ARG_TITLE:
948       src->uri_title = g_value_get_int (value);
949       if (started) {
950         src->title = src->uri_title - 1;
951         src->new_seek = TRUE;
952       }
953       break;
954     case ARG_CHAPTER:
955       src->uri_chapter = g_value_get_int (value);
956       if (started) {
957         src->chapter = src->uri_chapter - 1;
958         src->new_seek = TRUE;
959       }
960       break;
961     case ARG_ANGLE:
962       src->uri_angle = g_value_get_int (value);
963       if (started) {
964         src->angle = src->uri_angle - 1;
965       }
966       break;
967     default:
968       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
969       break;
970   }
971
972   GST_OBJECT_UNLOCK (src);
973 }
974
975 static void
976 gst_dvd_read_src_get_property (GObject * object, guint prop_id, GValue * value,
977     GParamSpec * pspec)
978 {
979   GstDvdReadSrc *src = GST_DVD_READ_SRC (object);
980
981   GST_OBJECT_LOCK (src);
982
983   switch (prop_id) {
984     case ARG_DEVICE:
985       g_value_set_string (value, src->location);
986       break;
987     case ARG_TITLE:
988       g_value_set_int (value, src->uri_title);
989       break;
990     case ARG_CHAPTER:
991       g_value_set_int (value, src->uri_chapter);
992       break;
993     case ARG_ANGLE:
994       g_value_set_int (value, src->uri_angle);
995       break;
996     default:
997       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
998       break;
999   }
1000
1001   GST_OBJECT_UNLOCK (src);
1002 }
1003
1004 static gboolean
1005 gst_dvd_read_src_get_size (GstDvdReadSrc * src, gint64 * size)
1006 {
1007   gboolean ret = FALSE;
1008
1009   if (src->dvd_title) {
1010     gsize blocks;
1011
1012     blocks = DVDFileSize (src->dvd_title);
1013     if (blocks >= 0) {
1014       *size = (gint64) blocks *DVD_VIDEO_LB_LEN;
1015
1016       ret = TRUE;
1017     } else {
1018       GST_WARNING_OBJECT (src, "DVDFileSize(%p) failed!", src->dvd_title);
1019     }
1020   }
1021
1022   return ret;
1023 }
1024
1025 /*** Querying and seeking ***/
1026
1027 static gboolean
1028 gst_dvd_read_src_handle_seek_event (GstDvdReadSrc * src, GstEvent * event)
1029 {
1030   GstSeekFlags flags;
1031   GstSeekType cur_type, end_type;
1032   gint64 new_off, total;
1033   GstFormat format;
1034   GstPad *srcpad;
1035   gboolean query_ok;
1036   gdouble rate;
1037
1038   gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &new_off,
1039       &end_type, NULL);
1040
1041   if (rate <= 0.0) {
1042     GST_DEBUG_OBJECT (src, "cannot do backwards playback yet");
1043     return FALSE;
1044   }
1045
1046   if ((flags & GST_SEEK_FLAG_SEGMENT) != 0) {
1047     GST_DEBUG_OBJECT (src, "segment seek not supported");
1048     return FALSE;
1049   }
1050
1051   if ((flags & GST_SEEK_FLAG_FLUSH) == 0) {
1052     GST_DEBUG_OBJECT (src, "can only do flushing seeks at the moment");
1053     return FALSE;
1054   }
1055
1056   if (end_type != GST_SEEK_TYPE_NONE) {
1057     GST_DEBUG_OBJECT (src, "end seek type not supported");
1058     return FALSE;
1059   }
1060
1061   if (cur_type != GST_SEEK_TYPE_SET) {
1062     GST_DEBUG_OBJECT (src, "only SEEK_TYPE_SET is supported");
1063     return FALSE;
1064   }
1065
1066   if (format == angle_format) {
1067     GST_OBJECT_LOCK (src);
1068     if (new_off < 0 || new_off >= src->num_angles) {
1069       GST_OBJECT_UNLOCK (src);
1070       GST_DEBUG_OBJECT (src, "invalid angle %d, only %d available",
1071           src->num_angles, src->num_angles);
1072       return FALSE;
1073     }
1074     src->angle = (gint) new_off;
1075     GST_OBJECT_UNLOCK (src);
1076     GST_DEBUG_OBJECT (src, "switched to angle %d", (gint) new_off + 1);
1077     return TRUE;
1078   }
1079
1080   if (format != chapter_format && format != title_format &&
1081       format != GST_FORMAT_BYTES && format != GST_FORMAT_TIME) {
1082     GST_DEBUG_OBJECT (src, "unsupported seek format %d (%s)", format,
1083         gst_format_get_name (format));
1084     return FALSE;
1085   }
1086
1087   if (format == GST_FORMAT_BYTES) {
1088     GST_DEBUG_OBJECT (src, "Requested seek to byte %" G_GUINT64_FORMAT,
1089         new_off);
1090   } else if (format == GST_FORMAT_TIME) {
1091     GST_DEBUG_OBJECT (src, "Requested seek to time %" GST_TIME_FORMAT,
1092         GST_TIME_ARGS (new_off));
1093     if (gst_dvd_read_src_get_sector_from_time (src, new_off) < 0) {
1094       GST_DEBUG_OBJECT (src, "Can't find sector for requested time");
1095       return FALSE;
1096     }
1097   }
1098
1099   srcpad = GST_BASE_SRC_PAD (src);
1100
1101   /* check whether the seek looks reasonable (ie within possible range) */
1102   if (format == GST_FORMAT_BYTES) {
1103     GST_OBJECT_LOCK (src);
1104     query_ok = gst_dvd_read_src_get_size (src, &total);
1105     GST_OBJECT_UNLOCK (src);
1106   } else {
1107     query_ok = gst_pad_query_duration (srcpad, &format, &total);
1108   }
1109
1110   if (!query_ok) {
1111     GST_DEBUG_OBJECT (src, "Failed to query duration in format %s",
1112         gst_format_get_name (format));
1113     return FALSE;
1114   }
1115
1116   GST_DEBUG_OBJECT (src, "Total      %s: %12" G_GINT64_FORMAT,
1117       gst_format_get_name (format), total);
1118   GST_DEBUG_OBJECT (src, "Seek to    %s: %12" G_GINT64_FORMAT,
1119       gst_format_get_name (format), new_off);
1120
1121   if (new_off >= total) {
1122     GST_DEBUG_OBJECT (src, "Seek position out of range");
1123     return FALSE;
1124   }
1125
1126   /* set segment to seek format; this allows us to use the do_seek
1127    * virtual function and let the base source handle all the tricky
1128    * stuff for us. We don't use the segment internally anyway */
1129   /* FIXME: can't take the stream lock here - what to do? */
1130   GST_OBJECT_LOCK (src);
1131   GST_BASE_SRC (src)->segment.format = format;
1132   GST_BASE_SRC (src)->segment.start = 0;
1133   GST_BASE_SRC (src)->segment.stop = total;
1134   GST_BASE_SRC (src)->segment.duration = total;
1135   GST_OBJECT_UNLOCK (src);
1136
1137   return GST_BASE_SRC_CLASS (parent_class)->event (GST_BASE_SRC (src), event);
1138 }
1139
1140 static gboolean
1141 gst_dvd_read_src_do_seek (GstBaseSrc * basesrc, GstSegment * s)
1142 {
1143   GstDvdReadSrc *src;
1144
1145   src = GST_DVD_READ_SRC (basesrc);
1146
1147   GST_DEBUG_OBJECT (src, "Seeking to %s: %12" G_GINT64_FORMAT,
1148       gst_format_get_name (s->format), s->last_stop);
1149
1150   if (s->format == sector_format || s->format == GST_FORMAT_BYTES
1151       || s->format == GST_FORMAT_TIME) {
1152     guint old;
1153
1154     old = src->cur_pack;
1155
1156     if (s->format == sector_format) {
1157       src->cur_pack = s->last_stop;
1158     } else if (s->format == GST_FORMAT_TIME) {
1159       gint sector;
1160
1161       sector = gst_dvd_read_src_get_sector_from_time (src, s->last_stop);
1162
1163       GST_DEBUG_OBJECT (src, "Time %" GST_TIME_FORMAT " => sector %d",
1164           GST_TIME_ARGS (s->last_stop), sector);
1165
1166       /* really shouldn't happen, we've checked this earlier ... */
1167       g_return_val_if_fail (sector >= 0, FALSE);
1168
1169       src->cur_pack = sector;
1170     } else {
1171       /* byte format */
1172       src->cur_pack = s->last_stop / DVD_VIDEO_LB_LEN;
1173       if ((src->cur_pack * DVD_VIDEO_LB_LEN) != s->last_stop) {
1174         GST_LOG_OBJECT (src, "rounded down offset %" G_GINT64_FORMAT " => %"
1175             G_GINT64_FORMAT, s->last_stop,
1176             (gint64) src->cur_pack * DVD_VIDEO_LB_LEN);
1177       }
1178     }
1179
1180     if (!gst_dvd_read_src_goto_sector (src, src->angle)) {
1181       GST_DEBUG_OBJECT (src, "seek to sector 0x%08x failed", src->cur_pack);
1182       src->cur_pack = old;
1183       return FALSE;
1184     }
1185
1186     GST_LOG_OBJECT (src, "seek to sector 0x%08x ok", src->cur_pack);
1187   } else if (s->format == chapter_format) {
1188     if (!gst_dvd_read_src_goto_chapter (src, (gint) s->last_stop)) {
1189       GST_DEBUG_OBJECT (src, "seek to chapter %d failed",
1190           (gint) s->last_stop + 1);
1191       return FALSE;
1192     }
1193     GST_INFO_OBJECT (src, "seek to chapter %d ok", (gint) s->last_stop + 1);
1194     src->chapter = s->last_stop;
1195   } else if (s->format == title_format) {
1196     if (!gst_dvd_read_src_goto_title (src, (gint) s->last_stop, src->angle) ||
1197         !gst_dvd_read_src_goto_chapter (src, 0)) {
1198       GST_DEBUG_OBJECT (src, "seek to title %d failed", (gint) s->last_stop);
1199       return FALSE;
1200     }
1201     src->title = (gint) s->last_stop;
1202     src->chapter = 0;
1203     GST_INFO_OBJECT (src, "seek to title %d ok", src->title + 1);
1204   } else {
1205     g_return_val_if_reached (FALSE);
1206   }
1207
1208   src->need_newsegment = TRUE;
1209   return TRUE;
1210 }
1211
1212 static gboolean
1213 gst_dvd_read_src_src_event (GstBaseSrc * basesrc, GstEvent * event)
1214 {
1215   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
1216   gboolean res;
1217
1218   GST_LOG_OBJECT (src, "handling %s event", GST_EVENT_TYPE_NAME (event));
1219
1220   switch (GST_EVENT_TYPE (event)) {
1221     case GST_EVENT_SEEK:
1222       res = gst_dvd_read_src_handle_seek_event (src, event);
1223       break;
1224     default:
1225       res = GST_BASE_SRC_CLASS (parent_class)->event (basesrc, event);
1226       break;
1227   }
1228
1229   return res;
1230 }
1231
1232 static GstEvent *
1233 gst_dvd_read_src_make_clut_change_event (GstDvdReadSrc * src,
1234     const guint * clut)
1235 {
1236   GstStructure *structure;
1237   gchar name[16];
1238   gint i;
1239
1240   structure = gst_structure_new ("application/x-gst-dvd",
1241       "event", G_TYPE_STRING, "dvd-spu-clut-change", NULL);
1242
1243   /* Create a separate field for each value in the table. */
1244   for (i = 0; i < 16; i++) {
1245     g_snprintf (name, sizeof (name), "clut%02d", i);
1246     gst_structure_set (structure, name, G_TYPE_INT, (int) clut[i], NULL);
1247   }
1248
1249   /* Create the DVD event and put the structure into it. */
1250   return gst_event_new_custom (GST_EVENT_CUSTOM_DOWNSTREAM, structure);
1251 }
1252
1253 static gint64
1254 gst_dvd_read_src_convert_timecode (dvd_time_t * time)
1255 {
1256   gint64 ret_time;
1257   const gint64 one_hour = 3600 * GST_SECOND;
1258   const gint64 one_min = 60 * GST_SECOND;
1259
1260   g_return_val_if_fail ((time->hour >> 4) < 0xa
1261       && (time->hour & 0xf) < 0xa, -1);
1262   g_return_val_if_fail ((time->minute >> 4) < 0x7
1263       && (time->minute & 0xf) < 0xa, -1);
1264   g_return_val_if_fail ((time->second >> 4) < 0x7
1265       && (time->second & 0xf) < 0xa, -1);
1266
1267   ret_time = ((time->hour >> 4) * 10 + (time->hour & 0xf)) * one_hour;
1268   ret_time += ((time->minute >> 4) * 10 + (time->minute & 0xf)) * one_min;
1269   ret_time += ((time->second >> 4) * 10 + (time->second & 0xf)) * GST_SECOND;
1270
1271   return ret_time;
1272 }
1273
1274 static gboolean
1275 gst_dvd_read_src_do_duration_query (GstDvdReadSrc * src, GstQuery * query)
1276 {
1277   GstFormat format;
1278   gint64 val;
1279
1280   gst_query_parse_duration (query, &format, NULL);
1281
1282   switch (format) {
1283     case GST_FORMAT_TIME:{
1284       if (src->cur_pgc == NULL)
1285         return FALSE;
1286       val = gst_dvd_read_src_convert_timecode (&src->cur_pgc->playback_time);
1287       if (val < 0)
1288         return FALSE;
1289       break;
1290     }
1291     case GST_FORMAT_BYTES:{
1292       if (!gst_dvd_read_src_get_size (src, &val))
1293         return FALSE;
1294       break;
1295     }
1296     default:{
1297       if (format == sector_format) {
1298         val = DVDFileSize (src->dvd_title);
1299       } else if (format == title_format) {
1300         val = src->tt_srpt->nr_of_srpts;
1301       } else if (format == chapter_format) {
1302         val = src->num_chapters;
1303       } else if (format == angle_format) {
1304         val = src->tt_srpt->title[src->title].nr_of_angles;
1305       } else {
1306         GST_DEBUG_OBJECT (src, "Don't know how to handle format %d (%s)",
1307             format, gst_format_get_name (format));
1308         return FALSE;
1309       }
1310       break;
1311     }
1312   }
1313
1314   GST_LOG_OBJECT (src, "duration = %" G_GINT64_FORMAT " %s", val,
1315       gst_format_get_name (format));
1316
1317   gst_query_set_duration (query, format, val);
1318   return TRUE;
1319 }
1320
1321 static gboolean
1322 gst_dvd_read_src_do_position_query (GstDvdReadSrc * src, GstQuery * query)
1323 {
1324   GstFormat format;
1325   gint64 val;
1326
1327   gst_query_parse_position (query, &format, NULL);
1328
1329   switch (format) {
1330     case GST_FORMAT_BYTES:{
1331       val = src->cur_pack * DVD_VIDEO_LB_LEN;
1332       break;
1333     }
1334     default:{
1335       if (format == sector_format) {
1336         val = src->cur_pack;
1337       } else if (format == title_format) {
1338         val = src->title;
1339       } else if (format == chapter_format) {
1340         val = src->chapter;
1341       } else if (format == angle_format) {
1342         val = src->angle;
1343       } else {
1344         GST_DEBUG_OBJECT (src, "Don't know how to handle format %d (%s)",
1345             format, gst_format_get_name (format));
1346         return FALSE;
1347       }
1348       break;
1349     }
1350   }
1351
1352   GST_LOG_OBJECT (src, "position = %" G_GINT64_FORMAT " %s", val,
1353       gst_format_get_name (format));
1354
1355   gst_query_set_position (query, format, val);
1356   return TRUE;
1357 }
1358
1359 static gboolean
1360 gst_dvd_read_src_do_convert_query (GstDvdReadSrc * src, GstQuery * query)
1361 {
1362   GstFormat src_format, dest_format;
1363   gboolean ret = FALSE;
1364   gint64 src_val, dest_val = -1;
1365
1366   gst_query_parse_convert (query, &src_format, &src_val, &dest_format, NULL);
1367
1368   if (src_format == dest_format) {
1369     dest_val = src_val;
1370     ret = TRUE;
1371     goto done;
1372   }
1373
1374   /* Formats to consider: TIME, DEFAULT, BYTES, title, chapter, sector.
1375    * Note: title and chapter are counted as starting from 0 here, just like
1376    * in the context of seek events. Another note: DEFAULT format is undefined */
1377
1378   if (src_format == GST_FORMAT_BYTES) {
1379     src_format = sector_format;
1380     src_val /= DVD_VIDEO_LB_LEN;
1381   }
1382
1383   if (src_format == sector_format) {
1384     /* SECTOR => xyz */
1385     if (dest_format == GST_FORMAT_TIME && src_val < G_MAXUINT) {
1386       dest_val = gst_dvd_read_src_get_time_for_sector (src, (guint) src_val);
1387       ret = (dest_val >= 0);
1388     } else if (dest_format == GST_FORMAT_BYTES) {
1389       dest_val = src_val * DVD_VIDEO_LB_LEN;
1390       ret = TRUE;
1391     } else {
1392       ret = FALSE;
1393     }
1394   } else if (src_format == title_format) {
1395     /* TITLE => xyz */
1396     if (dest_format == GST_FORMAT_TIME) {
1397       /* not really true, but we use this to trick the base source into
1398        * handling seeks in title-format for us (the source won't know that
1399        * we changed the title in this case) (changing titles should really
1400        * be done with an interface rather than a seek, but for now we're
1401        * stuck with this mechanism. Fix in 0.11) */
1402       dest_val = (GstClockTime) 0;
1403       ret = TRUE;
1404     } else {
1405       ret = FALSE;
1406     }
1407   } else if (src_format == chapter_format) {
1408     /* CHAPTER => xyz */
1409     if (dest_format == GST_FORMAT_TIME) {
1410       if (src->num_chapters >= 0 && src_val < src->num_chapters) {
1411         dest_val = src->chapter_starts[src_val];
1412         ret = TRUE;
1413       }
1414     } else if (dest_format == sector_format) {
1415     } else {
1416       ret = FALSE;
1417     }
1418   } else if (src_format == GST_FORMAT_TIME) {
1419     /* TIME => xyz */
1420     if (dest_format == sector_format || dest_format == GST_FORMAT_BYTES) {
1421       dest_val = gst_dvd_read_src_get_sector_from_time (src, src_val);
1422       ret = (dest_val >= 0);
1423       if (dest_format == GST_FORMAT_BYTES)
1424         dest_val *= DVD_VIDEO_LB_LEN;
1425     } else if (dest_format == chapter_format) {
1426       if (src->chapter_starts != NULL) {
1427         gint i;
1428
1429         for (i = src->num_chapters - 1; i >= 0; --i) {
1430           if (src->chapter_starts && src->chapter_starts[i] >= src_val) {
1431             dest_val = i;
1432             ret = TRUE;
1433             break;
1434           }
1435         }
1436       } else {
1437         ret = FALSE;
1438       }
1439     } else {
1440       ret = FALSE;
1441     }
1442   } else {
1443     ret = FALSE;
1444   }
1445
1446 done:
1447
1448   if (ret) {
1449     gst_query_set_convert (query, src_format, src_val, dest_format, dest_val);
1450   }
1451
1452   return ret;
1453 }
1454
1455 static gboolean
1456 gst_dvd_read_src_src_query (GstBaseSrc * basesrc, GstQuery * query)
1457 {
1458   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
1459   gboolean started;
1460   gboolean res = TRUE;
1461
1462   GST_LOG_OBJECT (src, "handling %s query",
1463       gst_query_type_get_name (GST_QUERY_TYPE (query)));
1464
1465   GST_OBJECT_LOCK (src);
1466   started = (GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED));
1467   GST_OBJECT_UNLOCK (src);
1468
1469   if (!started) {
1470     GST_DEBUG_OBJECT (src, "query failed: not started");
1471     return FALSE;
1472   }
1473
1474   switch (GST_QUERY_TYPE (query)) {
1475     case GST_QUERY_DURATION:
1476       GST_OBJECT_LOCK (src);
1477       res = gst_dvd_read_src_do_duration_query (src, query);
1478       GST_OBJECT_UNLOCK (src);
1479       break;
1480     case GST_QUERY_POSITION:
1481       GST_OBJECT_LOCK (src);
1482       res = gst_dvd_read_src_do_position_query (src, query);
1483       GST_OBJECT_UNLOCK (src);
1484       break;
1485     case GST_QUERY_CONVERT:
1486       GST_OBJECT_LOCK (src);
1487       res = gst_dvd_read_src_do_convert_query (src, query);
1488       GST_OBJECT_UNLOCK (src);
1489       break;
1490     default:
1491       res = GST_BASE_SRC_CLASS (parent_class)->query (basesrc, query);
1492       break;
1493   }
1494
1495   return res;
1496 }
1497
1498 static gboolean
1499 gst_dvd_read_src_goto_sector (GstDvdReadSrc * src, int angle)
1500 {
1501   gint seek_to = src->cur_pack;
1502   gint chapter, sectors, next, cur, i;
1503
1504   /* retrieve position */
1505   src->cur_pack = 0;
1506   for (i = 0; i < src->num_chapters; i++) {
1507     gint c1, c2;
1508
1509     cur_title_get_chapter_bounds (src, i, &c1, &c2);
1510
1511     for (next = cur = c1; cur < c2;) {
1512       if (next != cur) {
1513         sectors =
1514             src->cur_pgc->cell_playback[cur].last_sector -
1515             src->cur_pgc->cell_playback[cur].first_sector;
1516         if (src->cur_pack + sectors > seek_to) {
1517           chapter = i;
1518           goto done;
1519         }
1520         src->cur_pack += sectors;
1521       }
1522       cur = next;
1523       if (src->cur_pgc->cell_playback[cur].block_type == BLOCK_TYPE_ANGLE_BLOCK)
1524         cur += angle;
1525       next = gst_dvd_read_src_get_next_cell (src, src->cur_pgc, cur);
1526     }
1527   }
1528
1529   GST_DEBUG_OBJECT (src, "Seek to sector %u failed", seek_to);
1530
1531   return FALSE;
1532
1533 done:
1534   {
1535     /* so chapter $chapter and cell $cur contain our sector
1536      * of interest. Let's go there! */
1537     GST_INFO_OBJECT (src, "Seek succeeded, going to chapter %u, cell %u",
1538         chapter + 1, cur);
1539
1540     gst_dvd_read_src_goto_chapter (src, chapter);
1541     src->cur_cell = cur;
1542     src->next_cell = next;
1543     src->new_cell = FALSE;
1544     src->cur_pack = seek_to;
1545
1546     return TRUE;
1547   }
1548 }
1549
1550
1551 /*** URI interface ***/
1552
1553 static GstURIType
1554 gst_dvd_read_src_uri_get_type (void)
1555 {
1556   return GST_URI_SRC;
1557 }
1558
1559 static gchar **
1560 gst_dvd_read_src_uri_get_protocols (void)
1561 {
1562   static gchar *protocols[] = { "dvd", NULL };
1563
1564   return protocols;
1565 }
1566
1567 static const gchar *
1568 gst_dvd_read_src_uri_get_uri (GstURIHandler * handler)
1569 {
1570   GstDvdReadSrc *src = GST_DVD_READ_SRC (handler);
1571
1572   GST_OBJECT_LOCK (src);
1573
1574   g_free (src->last_uri);
1575   src->last_uri = g_strdup_printf ("dvd://%d,%d,%d", src->uri_title,
1576       src->uri_chapter, src->uri_angle);
1577
1578   GST_OBJECT_UNLOCK (src);
1579
1580   return src->last_uri;
1581 }
1582
1583 static gboolean
1584 gst_dvd_read_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
1585 {
1586   GstDvdReadSrc *src = GST_DVD_READ_SRC (handler);
1587   gboolean ret;
1588   gchar *protocol;
1589
1590   protocol = gst_uri_get_protocol (uri);
1591   ret = (protocol != NULL && g_str_equal (protocol, "dvd"));
1592   g_free (protocol);
1593   protocol = NULL;
1594
1595   if (!ret)
1596     return ret;
1597
1598   /* parse out the new t/c/a and seek to them */
1599   {
1600     gchar *location = NULL;
1601     gchar **strs;
1602     gchar **strcur;
1603     gint pos = 0;
1604
1605     location = gst_uri_get_location (uri);
1606
1607     if (!location)
1608       return ret;
1609
1610     GST_OBJECT_LOCK (src);
1611
1612     src->uri_title = 1;
1613     src->uri_chapter = 1;
1614     src->uri_angle = 1;
1615
1616     strcur = strs = g_strsplit (location, ",", 0);
1617     while (strcur && *strcur) {
1618       gint val;
1619
1620       if (!sscanf (*strcur, "%d", &val))
1621         break;
1622
1623       if (val <= 0) {
1624         g_warning ("Invalid value %d in URI '%s'. Must be 1 or greater",
1625             val, location);
1626         break;
1627       }
1628
1629       switch (pos) {
1630         case 0:
1631           src->uri_title = val;
1632           break;
1633         case 1:
1634           src->uri_chapter = val;
1635           break;
1636         case 2:
1637           src->uri_angle = val;
1638           break;
1639       }
1640
1641       strcur++;
1642       pos++;
1643     }
1644
1645     if (pos > 0 && GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED)) {
1646       src->title = src->uri_title - 1;
1647       src->chapter = src->uri_chapter - 1;
1648       src->angle = src->uri_angle - 1;
1649       src->new_seek = TRUE;
1650     }
1651
1652     GST_OBJECT_UNLOCK (src);
1653
1654     g_strfreev (strs);
1655     g_free (location);
1656   }
1657
1658   return ret;
1659 }
1660
1661 static void
1662 gst_dvd_read_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
1663 {
1664   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
1665
1666   iface->get_type = gst_dvd_read_src_uri_get_type;
1667   iface->get_protocols = gst_dvd_read_src_uri_get_protocols;
1668   iface->get_uri = gst_dvd_read_src_uri_get_uri;
1669   iface->set_uri = gst_dvd_read_src_uri_set_uri;
1670 }
1671
1672 static void
1673 gst_dvd_read_src_do_init (GType dvdreadsrc_type)
1674 {
1675   static const GInterfaceInfo urihandler_info = {
1676     gst_dvd_read_src_uri_handler_init,
1677     NULL,
1678     NULL
1679   };
1680
1681   g_type_add_interface_static (dvdreadsrc_type, GST_TYPE_URI_HANDLER,
1682       &urihandler_info);
1683
1684   title_format = gst_format_register ("title", "DVD title");
1685   angle_format = gst_format_register ("angle", "DVD angle");
1686   sector_format = gst_format_register ("sector", "DVD sector");
1687   chapter_format = gst_format_register ("chapter", "DVD chapter");
1688 }
1689
1690 static gboolean
1691 plugin_init (GstPlugin * plugin)
1692 {
1693   GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
1694       "DVD reader element based on dvdreadsrc");
1695
1696 #ifdef ENABLE_NLS
1697   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
1698       LOCALEDIR);
1699   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1700 #endif /* ENABLE_NLS */
1701
1702   if (!gst_element_register (plugin, "dvdreadsrc", GST_RANK_SECONDARY,
1703           GST_TYPE_DVD_READ_SRC)) {
1704     return FALSE;
1705   }
1706
1707   return TRUE;
1708 }
1709
1710 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1711     GST_VERSION_MINOR,
1712     "dvdread",
1713     "Access a DVD with dvdread",
1714     plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);