ext/dvdread/dvdreadsrc.c: Allow and implement non-flushing and/or segment seek (mainl...
[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, gint lbn, dsi_t * dsi_pack)
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   /* Read the DSI packet into the provided struct and check it */
655   navRead_DSI (dsi_pack, (unsigned char *) data + DSI_START_BYTE);
656   if (lbn != dsi_pack->dsi_gi.nv_pck_lbn)
657     return FALSE;
658
659   return TRUE;
660 }
661
662 /* find time for sector from index, returns NONE if there is no exact match */
663 static GstClockTime
664 gst_dvd_read_src_get_time_for_sector (GstDvdReadSrc * src, guint sector)
665 {
666   gint i, j;
667
668   if (src->vts_tmapt == NULL || src->vts_tmapt->nr_of_tmaps == 0)
669     return GST_CLOCK_TIME_NONE;
670
671   for (i = 0; i < src->vts_tmapt->nr_of_tmaps; ++i) {
672     for (j = 0; j < src->vts_tmapt->tmap[i].nr_of_entries; ++j) {
673       if ((src->vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff) == sector)
674         return src->vts_tmapt->tmap[i].tmu * (j + 1) * GST_SECOND;
675     }
676   }
677
678   if (sector == 0)
679     return (GstClockTime) 0;
680
681   return GST_CLOCK_TIME_NONE;
682 }
683
684 /* returns the sector in the index at (or before) the given time, or -1 */
685 static gint
686 gst_dvd_read_src_get_sector_from_time (GstDvdReadSrc * src, GstClockTime ts)
687 {
688   gint sector, i, j;
689
690   if (src->vts_tmapt == NULL || src->vts_tmapt->nr_of_tmaps == 0)
691     return -1;
692
693   sector = 0;
694   for (i = 0; i < src->vts_tmapt->nr_of_tmaps; ++i) {
695     for (j = 0; j < src->vts_tmapt->tmap[i].nr_of_entries; ++j) {
696       GstClockTime entry_time;
697
698       entry_time = src->vts_tmapt->tmap[i].tmu * (j + 1) * GST_SECOND;
699       if (entry_time <= ts) {
700         sector = src->vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff;
701       }
702       if (entry_time >= ts) {
703         return sector;
704       }
705     }
706   }
707
708   if (ts == 0)
709     return 0;
710
711   return -1;
712 }
713
714 typedef enum
715 {
716   GST_DVD_READ_OK = 0,
717   GST_DVD_READ_ERROR = -1,
718   GST_DVD_READ_EOS = -2,
719   GST_DVD_READ_AGAIN = -3
720 } GstDvdReadReturn;
721
722 static GstDvdReadReturn
723 gst_dvd_read_src_read (GstDvdReadSrc * src, gint angle, gint new_seek,
724     GstBuffer ** p_buf)
725 {
726   GstBuffer *buf;
727   GstSegment *seg;
728   guint8 oneblock[DVD_VIDEO_LB_LEN];
729   dsi_t dsi_pack;
730   guint next_vobu, next_ilvu_start, cur_output_size;
731   gint len;
732   gint retries;
733   gint64 next_time;
734
735   seg = &(GST_BASE_SRC (src)->segment);
736
737   /* playback by cell in this pgc, starting at the cell for our chapter */
738   if (new_seek)
739     src->cur_cell = src->start_cell;
740
741 again:
742
743   if (src->cur_cell >= src->last_cell) {
744     /* advance to next chapter */
745     if (src->chapter == (src->num_chapters - 1) ||
746         (seg->format == chapter_format && seg->stop != -1 &&
747             src->chapter == (seg->stop - 1))) {
748       GST_DEBUG_OBJECT (src, "end of chapter segment");
749       goto eos;
750     }
751
752     GST_INFO_OBJECT (src, "end of chapter %d, switch to next",
753         src->chapter + 1);
754
755     ++src->chapter;
756     gst_dvd_read_src_goto_chapter (src, src->chapter);
757
758     return GST_DVD_READ_AGAIN;
759   }
760
761   if (src->new_cell || new_seek) {
762     if (!new_seek) {
763       src->cur_cell = src->next_cell;
764       if (src->cur_cell >= src->last_cell) {
765         GST_LOG_OBJECT (src, "last cell in chapter");
766         goto again;
767       }
768     }
769
770     /* take angle into account */
771     if (src->cur_pgc->cell_playback[src->cur_cell].block_type
772         == BLOCK_TYPE_ANGLE_BLOCK)
773       src->cur_cell += angle;
774
775     /* calculate next cell */
776     src->next_cell =
777         gst_dvd_read_src_get_next_cell (src, src->cur_pgc, src->cur_cell);
778
779     /* we loop until we're out of this cell */
780     src->cur_pack = src->cur_pgc->cell_playback[src->cur_cell].first_sector;
781     src->new_cell = FALSE;
782     GST_DEBUG_OBJECT (src, "Starting new cell %d @ pack %d", src->cur_cell,
783         src->cur_pack);
784   }
785
786   if (src->cur_pack >= src->cur_pgc->cell_playback[src->cur_cell].last_sector) {
787     src->new_cell = TRUE;
788     GST_LOG_OBJECT (src, "Beyond last sector for cell %d, going to next cell",
789         src->cur_cell);
790     return GST_DVD_READ_AGAIN;
791   }
792
793   /* read NAV packet */
794   retries = 0;
795 nav_retry:
796   retries++;
797
798   len = DVDReadBlocks (src->dvd_title, src->cur_pack, 1, oneblock);
799   if (len != 1)
800     goto read_error;
801
802   if (!gst_dvd_read_src_is_nav_pack (oneblock, src->cur_pack, &dsi_pack)) {
803     GST_LOG_OBJECT (src, "Skipping nav packet @ pack %d", src->cur_pack);
804     src->cur_pack++;
805
806     if (retries < 2000) {
807       goto nav_retry;
808     } else {
809       GST_LOG_OBJECT (src, "No nav packet @ pack %d after 2000 blocks",
810           src->cur_pack);
811       goto read_error;
812     }
813   }
814
815   /* determine where we go next. These values are the ones we
816    * mostly care about */
817   next_ilvu_start = src->cur_pack + dsi_pack.sml_agli.data[angle].address;
818   cur_output_size = dsi_pack.dsi_gi.vobu_ea + 1;
819
820   /* If we're not at the end of this cell, we can determine the next
821    * VOBU to display using the VOBU_SRI information section of the
822    * DSI.  Using this value correctly follows the current angle,
823    * avoiding the doubled scenes in The Matrix, and makes our life
824    * really happy.
825    *
826    * Otherwise, we set our next address past the end of this cell to
827    * force the code above to go to the next cell in the program. */
828   if (dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL) {
829     next_vobu = src->cur_pack + (dsi_pack.vobu_sri.next_vobu & 0x7fffffff);
830   } else {
831     next_vobu = src->cur_pgc->cell_playback[src->cur_cell].last_sector + 1;
832   }
833
834   g_assert (cur_output_size < 1024);
835
836   /* create the buffer (TODO: use buffer pool?) */
837   buf = gst_buffer_new_and_alloc (cur_output_size * DVD_VIDEO_LB_LEN);
838
839   GST_LOG_OBJECT (src, "Going to read %u sectors @ pack %d", cur_output_size,
840       src->cur_pack);
841
842   /* read in and output cursize packs */
843   len = DVDReadBlocks (src->dvd_title, src->cur_pack, cur_output_size,
844       GST_BUFFER_DATA (buf));
845
846   if (len != cur_output_size)
847     goto block_read_error;
848
849   GST_BUFFER_SIZE (buf) = cur_output_size * DVD_VIDEO_LB_LEN;
850   /* GST_BUFFER_OFFSET (buf) = priv->cur_pack * DVD_VIDEO_LB_LEN; */
851   GST_BUFFER_TIMESTAMP (buf) =
852       gst_dvd_read_src_get_time_for_sector (src, src->cur_pack);
853
854   gst_buffer_set_caps (buf, GST_PAD_CAPS (GST_BASE_SRC_PAD (src)));
855
856   *p_buf = buf;
857
858   GST_LOG_OBJECT (src, "Read %u sectors", cur_output_size);
859
860   src->cur_pack = next_vobu;
861
862   next_time = GST_BUFFER_TIMESTAMP (buf);
863   if (GST_CLOCK_TIME_IS_VALID (next_time) && seg->format == GST_FORMAT_TIME &&
864       GST_CLOCK_TIME_IS_VALID (seg->stop) &&
865       next_time > seg->stop + 5 * GST_SECOND) {
866     GST_DEBUG_OBJECT (src, "end of TIME segment");
867     goto eos;
868   }
869
870   return GST_DVD_READ_OK;
871
872   /* ERRORS */
873 eos:
874   {
875     GST_INFO_OBJECT (src, "Reached end-of-segment/stream - EOS");
876     return GST_DVD_READ_EOS;
877   }
878 read_error:
879   {
880     GST_ERROR_OBJECT (src, "Read failed for block %d", src->cur_pack);
881     return GST_DVD_READ_ERROR;
882   }
883 block_read_error:
884   {
885     GST_ERROR_OBJECT (src, "Read failed for %d blocks at %d",
886         cur_output_size, src->cur_pack);
887     gst_buffer_unref (buf);
888     return GST_DVD_READ_ERROR;
889   }
890 }
891
892 static GstFlowReturn
893 gst_dvd_read_src_create (GstPushSrc * pushsrc, GstBuffer ** p_buf)
894 {
895   GstDvdReadSrc *src = GST_DVD_READ_SRC (pushsrc);
896   GstPad *srcpad;
897   gint res;
898
899   g_return_val_if_fail (src->dvd != NULL, GST_FLOW_ERROR);
900
901   srcpad = GST_BASE_SRC (src)->srcpad;
902
903   if (src->need_newsegment) {
904     gst_pad_push_event (srcpad,
905         gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_BYTES,
906             (gint64) src->cur_pack * DVD_VIDEO_LB_LEN, -1, 0));
907     src->need_newsegment = FALSE;
908   }
909
910   if (src->new_seek) {
911     gst_dvd_read_src_goto_title (src, src->title, src->angle);
912     gst_dvd_read_src_goto_chapter (src, src->chapter);
913
914     src->new_seek = FALSE;
915     src->change_cell = TRUE;
916   }
917
918   if (src->title_lang_event_pending) {
919     gst_pad_push_event (srcpad, src->title_lang_event_pending);
920     src->title_lang_event_pending = NULL;
921   }
922
923   if (src->pending_clut_event) {
924     gst_pad_push_event (srcpad, src->pending_clut_event);
925     src->pending_clut_event = NULL;
926   }
927
928   /* read it in */
929   do {
930     res = gst_dvd_read_src_read (src, src->angle, src->change_cell, p_buf);
931   } while (res == GST_DVD_READ_AGAIN);
932
933   switch (res) {
934     case GST_DVD_READ_ERROR:{
935       GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL), (NULL));
936       return GST_FLOW_ERROR;
937     }
938     case GST_DVD_READ_EOS:{
939       return GST_FLOW_UNEXPECTED;
940     }
941     case GST_DVD_READ_OK:{
942       src->change_cell = FALSE;
943       return GST_FLOW_OK;
944     }
945     default:
946       break;
947   }
948
949   g_return_val_if_reached (GST_FLOW_UNEXPECTED);
950 }
951
952 static void
953 gst_dvd_read_src_set_property (GObject * object, guint prop_id,
954     const GValue * value, GParamSpec * pspec)
955 {
956   GstDvdReadSrc *src = GST_DVD_READ_SRC (object);
957   gboolean started;
958
959   GST_OBJECT_LOCK (src);
960   started = GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED);
961
962   switch (prop_id) {
963     case ARG_DEVICE:{
964       if (started) {
965         g_warning ("%s: property '%s' needs to be set before the device is "
966             "opened", GST_ELEMENT_NAME (src), pspec->name);
967         break;;
968       }
969
970       g_free (src->location);
971       /* clear the filename if we get a NULL (is that possible?) */
972       if (g_value_get_string (value) == NULL) {
973         src->location = g_strdup ("/dev/dvd");
974       } else {
975         src->location = g_strdup (g_value_get_string (value));
976       }
977       break;
978     }
979     case ARG_TITLE:
980       src->uri_title = g_value_get_int (value);
981       if (started) {
982         src->title = src->uri_title - 1;
983         src->new_seek = TRUE;
984       }
985       break;
986     case ARG_CHAPTER:
987       src->uri_chapter = g_value_get_int (value);
988       if (started) {
989         src->chapter = src->uri_chapter - 1;
990         src->new_seek = TRUE;
991       }
992       break;
993     case ARG_ANGLE:
994       src->uri_angle = g_value_get_int (value);
995       if (started) {
996         src->angle = src->uri_angle - 1;
997       }
998       break;
999     default:
1000       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1001       break;
1002   }
1003
1004   GST_OBJECT_UNLOCK (src);
1005 }
1006
1007 static void
1008 gst_dvd_read_src_get_property (GObject * object, guint prop_id, GValue * value,
1009     GParamSpec * pspec)
1010 {
1011   GstDvdReadSrc *src = GST_DVD_READ_SRC (object);
1012
1013   GST_OBJECT_LOCK (src);
1014
1015   switch (prop_id) {
1016     case ARG_DEVICE:
1017       g_value_set_string (value, src->location);
1018       break;
1019     case ARG_TITLE:
1020       g_value_set_int (value, src->uri_title);
1021       break;
1022     case ARG_CHAPTER:
1023       g_value_set_int (value, src->uri_chapter);
1024       break;
1025     case ARG_ANGLE:
1026       g_value_set_int (value, src->uri_angle);
1027       break;
1028     default:
1029       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1030       break;
1031   }
1032
1033   GST_OBJECT_UNLOCK (src);
1034 }
1035
1036 static gboolean
1037 gst_dvd_read_src_get_size (GstDvdReadSrc * src, gint64 * size)
1038 {
1039   gboolean ret = FALSE;
1040
1041   if (src->dvd_title) {
1042     gsize blocks;
1043
1044     blocks = DVDFileSize (src->dvd_title);
1045     if (blocks >= 0) {
1046       *size = (gint64) blocks *DVD_VIDEO_LB_LEN;
1047
1048       ret = TRUE;
1049     } else {
1050       GST_WARNING_OBJECT (src, "DVDFileSize(%p) failed!", src->dvd_title);
1051     }
1052   }
1053
1054   return ret;
1055 }
1056
1057 /*** Querying and seeking ***/
1058
1059 static gboolean
1060 gst_dvd_read_src_handle_seek_event (GstDvdReadSrc * src, GstEvent * event)
1061 {
1062   GstSeekFlags flags;
1063   GstSeekType cur_type, end_type;
1064   gint64 new_off, total;
1065   GstFormat format;
1066   GstPad *srcpad;
1067   gboolean query_ok;
1068   gdouble rate;
1069
1070   gst_event_parse_seek (event, &rate, &format, &flags, &cur_type, &new_off,
1071       &end_type, NULL);
1072
1073   if (rate <= 0.0) {
1074     GST_DEBUG_OBJECT (src, "cannot do backwards playback yet");
1075     return FALSE;
1076   }
1077
1078   if (end_type != GST_SEEK_TYPE_NONE) {
1079     if ((format != chapter_format && format != GST_FORMAT_TIME) ||
1080         end_type != GST_SEEK_TYPE_SET) {
1081       GST_DEBUG_OBJECT (src, "end seek type not supported");
1082       return FALSE;
1083     }
1084   }
1085
1086   if (cur_type != GST_SEEK_TYPE_SET) {
1087     GST_DEBUG_OBJECT (src, "only SEEK_TYPE_SET is supported");
1088     return FALSE;
1089   }
1090
1091   if (format == angle_format) {
1092     GST_OBJECT_LOCK (src);
1093     if (new_off < 0 || new_off >= src->num_angles) {
1094       GST_OBJECT_UNLOCK (src);
1095       GST_DEBUG_OBJECT (src, "invalid angle %d, only %d available",
1096           src->num_angles, src->num_angles);
1097       return FALSE;
1098     }
1099     src->angle = (gint) new_off;
1100     GST_OBJECT_UNLOCK (src);
1101     GST_DEBUG_OBJECT (src, "switched to angle %d", (gint) new_off + 1);
1102     return TRUE;
1103   }
1104
1105   if (format != chapter_format && format != title_format &&
1106       format != GST_FORMAT_BYTES && format != GST_FORMAT_TIME) {
1107     GST_DEBUG_OBJECT (src, "unsupported seek format %d (%s)", format,
1108         gst_format_get_name (format));
1109     return FALSE;
1110   }
1111
1112   if (format == GST_FORMAT_BYTES) {
1113     GST_DEBUG_OBJECT (src, "Requested seek to byte %" G_GUINT64_FORMAT,
1114         new_off);
1115   } else if (format == GST_FORMAT_TIME) {
1116     GST_DEBUG_OBJECT (src, "Requested seek to time %" GST_TIME_FORMAT,
1117         GST_TIME_ARGS (new_off));
1118     if (gst_dvd_read_src_get_sector_from_time (src, new_off) < 0) {
1119       GST_DEBUG_OBJECT (src, "Can't find sector for requested time");
1120       return FALSE;
1121     }
1122   }
1123
1124   srcpad = GST_BASE_SRC_PAD (src);
1125
1126   /* check whether the seek looks reasonable (ie within possible range) */
1127   if (format == GST_FORMAT_BYTES) {
1128     GST_OBJECT_LOCK (src);
1129     query_ok = gst_dvd_read_src_get_size (src, &total);
1130     GST_OBJECT_UNLOCK (src);
1131   } else {
1132     query_ok = gst_pad_query_duration (srcpad, &format, &total);
1133   }
1134
1135   if (!query_ok) {
1136     GST_DEBUG_OBJECT (src, "Failed to query duration in format %s",
1137         gst_format_get_name (format));
1138     return FALSE;
1139   }
1140
1141   GST_DEBUG_OBJECT (src, "Total      %s: %12" G_GINT64_FORMAT,
1142       gst_format_get_name (format), total);
1143   GST_DEBUG_OBJECT (src, "Seek to    %s: %12" G_GINT64_FORMAT,
1144       gst_format_get_name (format), new_off);
1145
1146   if (new_off >= total) {
1147     GST_DEBUG_OBJECT (src, "Seek position out of range");
1148     return FALSE;
1149   }
1150
1151   /* set segment to seek format; this allows us to use the do_seek
1152    * virtual function and let the base source handle all the tricky
1153    * stuff for us. We don't use the segment internally anyway */
1154   /* FIXME: can't take the stream lock here - what to do? */
1155   GST_OBJECT_LOCK (src);
1156   GST_BASE_SRC (src)->segment.format = format;
1157   GST_BASE_SRC (src)->segment.start = 0;
1158   GST_BASE_SRC (src)->segment.stop = total;
1159   GST_BASE_SRC (src)->segment.duration = total;
1160   GST_OBJECT_UNLOCK (src);
1161
1162   return GST_BASE_SRC_CLASS (parent_class)->event (GST_BASE_SRC (src), event);
1163 }
1164
1165 static gboolean
1166 gst_dvd_read_src_do_seek (GstBaseSrc * basesrc, GstSegment * s)
1167 {
1168   GstDvdReadSrc *src;
1169
1170   src = GST_DVD_READ_SRC (basesrc);
1171
1172   GST_DEBUG_OBJECT (src, "Seeking to %s: %12" G_GINT64_FORMAT,
1173       gst_format_get_name (s->format), s->last_stop);
1174
1175   if (s->format == sector_format || s->format == GST_FORMAT_BYTES
1176       || s->format == GST_FORMAT_TIME) {
1177     guint old;
1178
1179     old = src->cur_pack;
1180
1181     if (s->format == sector_format) {
1182       src->cur_pack = s->last_stop;
1183     } else if (s->format == GST_FORMAT_TIME) {
1184       gint sector;
1185
1186       sector = gst_dvd_read_src_get_sector_from_time (src, s->last_stop);
1187
1188       GST_DEBUG_OBJECT (src, "Time %" GST_TIME_FORMAT " => sector %d",
1189           GST_TIME_ARGS (s->last_stop), sector);
1190
1191       /* really shouldn't happen, we've checked this earlier ... */
1192       g_return_val_if_fail (sector >= 0, FALSE);
1193
1194       src->cur_pack = sector;
1195     } else {
1196       /* byte format */
1197       src->cur_pack = s->last_stop / DVD_VIDEO_LB_LEN;
1198       if (((gint64) src->cur_pack * DVD_VIDEO_LB_LEN) != s->last_stop) {
1199         GST_LOG_OBJECT (src, "rounded down offset %" G_GINT64_FORMAT " => %"
1200             G_GINT64_FORMAT, s->last_stop,
1201             (gint64) src->cur_pack * DVD_VIDEO_LB_LEN);
1202       }
1203     }
1204
1205     if (!gst_dvd_read_src_goto_sector (src, src->angle)) {
1206       GST_DEBUG_OBJECT (src, "seek to sector 0x%08x failed", src->cur_pack);
1207       src->cur_pack = old;
1208       return FALSE;
1209     }
1210
1211     GST_LOG_OBJECT (src, "seek to sector 0x%08x ok", src->cur_pack);
1212   } else if (s->format == chapter_format) {
1213     if (!gst_dvd_read_src_goto_chapter (src, (gint) s->last_stop)) {
1214       GST_DEBUG_OBJECT (src, "seek to chapter %d failed",
1215           (gint) s->last_stop + 1);
1216       return FALSE;
1217     }
1218     GST_INFO_OBJECT (src, "seek to chapter %d ok", (gint) s->last_stop + 1);
1219     src->chapter = s->last_stop;
1220   } else if (s->format == title_format) {
1221     if (!gst_dvd_read_src_goto_title (src, (gint) s->last_stop, src->angle) ||
1222         !gst_dvd_read_src_goto_chapter (src, 0)) {
1223       GST_DEBUG_OBJECT (src, "seek to title %d failed", (gint) s->last_stop);
1224       return FALSE;
1225     }
1226     src->title = (gint) s->last_stop;
1227     src->chapter = 0;
1228     GST_INFO_OBJECT (src, "seek to title %d ok", src->title + 1);
1229   } else {
1230     g_return_val_if_reached (FALSE);
1231   }
1232
1233   src->need_newsegment = TRUE;
1234   return TRUE;
1235 }
1236
1237 static gboolean
1238 gst_dvd_read_src_src_event (GstBaseSrc * basesrc, GstEvent * event)
1239 {
1240   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
1241   gboolean res;
1242
1243   GST_LOG_OBJECT (src, "handling %s event", GST_EVENT_TYPE_NAME (event));
1244
1245   switch (GST_EVENT_TYPE (event)) {
1246     case GST_EVENT_SEEK:
1247       res = gst_dvd_read_src_handle_seek_event (src, event);
1248       break;
1249     default:
1250       res = GST_BASE_SRC_CLASS (parent_class)->event (basesrc, event);
1251       break;
1252   }
1253
1254   return res;
1255 }
1256
1257 static GstEvent *
1258 gst_dvd_read_src_make_clut_change_event (GstDvdReadSrc * src,
1259     const guint * clut)
1260 {
1261   GstStructure *structure;
1262   gchar name[16];
1263   gint i;
1264
1265   structure = gst_structure_new ("application/x-gst-dvd",
1266       "event", G_TYPE_STRING, "dvd-spu-clut-change", NULL);
1267
1268   /* Create a separate field for each value in the table. */
1269   for (i = 0; i < 16; i++) {
1270     g_snprintf (name, sizeof (name), "clut%02d", i);
1271     gst_structure_set (structure, name, G_TYPE_INT, (int) clut[i], NULL);
1272   }
1273
1274   /* Create the DVD event and put the structure into it. */
1275   return gst_event_new_custom (GST_EVENT_CUSTOM_DOWNSTREAM, structure);
1276 }
1277
1278 static gint64
1279 gst_dvd_read_src_convert_timecode (dvd_time_t * time)
1280 {
1281   gint64 ret_time;
1282   const gint64 one_hour = 3600 * GST_SECOND;
1283   const gint64 one_min = 60 * GST_SECOND;
1284
1285   g_return_val_if_fail ((time->hour >> 4) < 0xa
1286       && (time->hour & 0xf) < 0xa, -1);
1287   g_return_val_if_fail ((time->minute >> 4) < 0x7
1288       && (time->minute & 0xf) < 0xa, -1);
1289   g_return_val_if_fail ((time->second >> 4) < 0x7
1290       && (time->second & 0xf) < 0xa, -1);
1291
1292   ret_time = ((time->hour >> 4) * 10 + (time->hour & 0xf)) * one_hour;
1293   ret_time += ((time->minute >> 4) * 10 + (time->minute & 0xf)) * one_min;
1294   ret_time += ((time->second >> 4) * 10 + (time->second & 0xf)) * GST_SECOND;
1295
1296   return ret_time;
1297 }
1298
1299 static gboolean
1300 gst_dvd_read_src_do_duration_query (GstDvdReadSrc * src, GstQuery * query)
1301 {
1302   GstFormat format;
1303   gint64 val;
1304
1305   gst_query_parse_duration (query, &format, NULL);
1306
1307   switch (format) {
1308     case GST_FORMAT_TIME:{
1309       if (src->cur_pgc == NULL)
1310         return FALSE;
1311       val = gst_dvd_read_src_convert_timecode (&src->cur_pgc->playback_time);
1312       if (val < 0)
1313         return FALSE;
1314       break;
1315     }
1316     case GST_FORMAT_BYTES:{
1317       if (!gst_dvd_read_src_get_size (src, &val))
1318         return FALSE;
1319       break;
1320     }
1321     default:{
1322       if (format == sector_format) {
1323         val = DVDFileSize (src->dvd_title);
1324       } else if (format == title_format) {
1325         val = src->tt_srpt->nr_of_srpts;
1326       } else if (format == chapter_format) {
1327         val = src->num_chapters;
1328       } else if (format == angle_format) {
1329         val = src->tt_srpt->title[src->title].nr_of_angles;
1330       } else {
1331         GST_DEBUG_OBJECT (src, "Don't know how to handle format %d (%s)",
1332             format, gst_format_get_name (format));
1333         return FALSE;
1334       }
1335       break;
1336     }
1337   }
1338
1339   GST_LOG_OBJECT (src, "duration = %" G_GINT64_FORMAT " %s", val,
1340       gst_format_get_name (format));
1341
1342   gst_query_set_duration (query, format, val);
1343   return TRUE;
1344 }
1345
1346 static gboolean
1347 gst_dvd_read_src_do_position_query (GstDvdReadSrc * src, GstQuery * query)
1348 {
1349   GstFormat format;
1350   gint64 val;
1351
1352   gst_query_parse_position (query, &format, NULL);
1353
1354   switch (format) {
1355     case GST_FORMAT_BYTES:{
1356       val = (gint64) src->cur_pack * DVD_VIDEO_LB_LEN;
1357       break;
1358     }
1359     default:{
1360       if (format == sector_format) {
1361         val = src->cur_pack;
1362       } else if (format == title_format) {
1363         val = src->title;
1364       } else if (format == chapter_format) {
1365         val = src->chapter;
1366       } else if (format == angle_format) {
1367         val = src->angle;
1368       } else {
1369         GST_DEBUG_OBJECT (src, "Don't know how to handle format %d (%s)",
1370             format, gst_format_get_name (format));
1371         return FALSE;
1372       }
1373       break;
1374     }
1375   }
1376
1377   GST_LOG_OBJECT (src, "position = %" G_GINT64_FORMAT " %s", val,
1378       gst_format_get_name (format));
1379
1380   gst_query_set_position (query, format, val);
1381   return TRUE;
1382 }
1383
1384 static gboolean
1385 gst_dvd_read_src_do_convert_query (GstDvdReadSrc * src, GstQuery * query)
1386 {
1387   GstFormat src_format, dest_format;
1388   gboolean ret = FALSE;
1389   gint64 src_val, dest_val = -1;
1390
1391   gst_query_parse_convert (query, &src_format, &src_val, &dest_format, NULL);
1392
1393   if (src_format == dest_format) {
1394     dest_val = src_val;
1395     ret = TRUE;
1396     goto done;
1397   }
1398
1399   /* Formats to consider: TIME, DEFAULT, BYTES, title, chapter, sector.
1400    * Note: title and chapter are counted as starting from 0 here, just like
1401    * in the context of seek events. Another note: DEFAULT format is undefined */
1402
1403   if (src_format == GST_FORMAT_BYTES) {
1404     src_format = sector_format;
1405     src_val /= DVD_VIDEO_LB_LEN;
1406   }
1407
1408   if (src_format == sector_format) {
1409     /* SECTOR => xyz */
1410     if (dest_format == GST_FORMAT_TIME && src_val < G_MAXUINT) {
1411       dest_val = gst_dvd_read_src_get_time_for_sector (src, (guint) src_val);
1412       ret = (dest_val >= 0);
1413     } else if (dest_format == GST_FORMAT_BYTES) {
1414       dest_val = src_val * DVD_VIDEO_LB_LEN;
1415       ret = TRUE;
1416     } else {
1417       ret = FALSE;
1418     }
1419   } else if (src_format == title_format) {
1420     /* TITLE => xyz */
1421     if (dest_format == GST_FORMAT_TIME) {
1422       /* not really true, but we use this to trick the base source into
1423        * handling seeks in title-format for us (the source won't know that
1424        * we changed the title in this case) (changing titles should really
1425        * be done with an interface rather than a seek, but for now we're
1426        * stuck with this mechanism. Fix in 0.11) */
1427       dest_val = (GstClockTime) 0;
1428       ret = TRUE;
1429     } else {
1430       ret = FALSE;
1431     }
1432   } else if (src_format == chapter_format) {
1433     /* CHAPTER => xyz */
1434     if (dest_format == GST_FORMAT_TIME) {
1435       if (src->num_chapters >= 0 && src_val < src->num_chapters) {
1436         dest_val = src->chapter_starts[src_val];
1437         ret = TRUE;
1438       }
1439     } else if (dest_format == sector_format) {
1440     } else {
1441       ret = FALSE;
1442     }
1443   } else if (src_format == GST_FORMAT_TIME) {
1444     /* TIME => xyz */
1445     if (dest_format == sector_format || dest_format == GST_FORMAT_BYTES) {
1446       dest_val = gst_dvd_read_src_get_sector_from_time (src, src_val);
1447       ret = (dest_val >= 0);
1448       if (dest_format == GST_FORMAT_BYTES)
1449         dest_val *= DVD_VIDEO_LB_LEN;
1450     } else if (dest_format == chapter_format) {
1451       if (src->chapter_starts != NULL) {
1452         gint i;
1453
1454         for (i = src->num_chapters - 1; i >= 0; --i) {
1455           if (src->chapter_starts && src->chapter_starts[i] >= src_val) {
1456             dest_val = i;
1457             ret = TRUE;
1458             break;
1459           }
1460         }
1461       } else {
1462         ret = FALSE;
1463       }
1464     } else {
1465       ret = FALSE;
1466     }
1467   } else {
1468     ret = FALSE;
1469   }
1470
1471 done:
1472
1473   if (ret) {
1474     gst_query_set_convert (query, src_format, src_val, dest_format, dest_val);
1475   }
1476
1477   return ret;
1478 }
1479
1480 static gboolean
1481 gst_dvd_read_src_src_query (GstBaseSrc * basesrc, GstQuery * query)
1482 {
1483   GstDvdReadSrc *src = GST_DVD_READ_SRC (basesrc);
1484   gboolean started;
1485   gboolean res = TRUE;
1486
1487   GST_LOG_OBJECT (src, "handling %s query",
1488       gst_query_type_get_name (GST_QUERY_TYPE (query)));
1489
1490   GST_OBJECT_LOCK (src);
1491   started = (GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED));
1492   GST_OBJECT_UNLOCK (src);
1493
1494   if (!started) {
1495     GST_DEBUG_OBJECT (src, "query failed: not started");
1496     return FALSE;
1497   }
1498
1499   switch (GST_QUERY_TYPE (query)) {
1500     case GST_QUERY_DURATION:
1501       GST_OBJECT_LOCK (src);
1502       res = gst_dvd_read_src_do_duration_query (src, query);
1503       GST_OBJECT_UNLOCK (src);
1504       break;
1505     case GST_QUERY_POSITION:
1506       GST_OBJECT_LOCK (src);
1507       res = gst_dvd_read_src_do_position_query (src, query);
1508       GST_OBJECT_UNLOCK (src);
1509       break;
1510     case GST_QUERY_CONVERT:
1511       GST_OBJECT_LOCK (src);
1512       res = gst_dvd_read_src_do_convert_query (src, query);
1513       GST_OBJECT_UNLOCK (src);
1514       break;
1515     default:
1516       res = GST_BASE_SRC_CLASS (parent_class)->query (basesrc, query);
1517       break;
1518   }
1519
1520   return res;
1521 }
1522
1523 static gboolean
1524 gst_dvd_read_src_goto_sector (GstDvdReadSrc * src, int angle)
1525 {
1526   gint seek_to = src->cur_pack;
1527   gint chapter, sectors, next, cur, i;
1528
1529   /* retrieve position */
1530   src->cur_pack = 0;
1531   for (i = 0; i < src->num_chapters; i++) {
1532     gint c1, c2;
1533
1534     cur_title_get_chapter_bounds (src, i, &c1, &c2);
1535
1536     for (next = cur = c1; cur < c2;) {
1537       if (next != cur) {
1538         sectors =
1539             src->cur_pgc->cell_playback[cur].last_sector -
1540             src->cur_pgc->cell_playback[cur].first_sector;
1541         if (src->cur_pack + sectors > seek_to) {
1542           chapter = i;
1543           goto done;
1544         }
1545         src->cur_pack += sectors;
1546       }
1547       cur = next;
1548       if (src->cur_pgc->cell_playback[cur].block_type == BLOCK_TYPE_ANGLE_BLOCK)
1549         cur += angle;
1550       next = gst_dvd_read_src_get_next_cell (src, src->cur_pgc, cur);
1551     }
1552   }
1553
1554   GST_DEBUG_OBJECT (src, "Seek to sector %u failed", seek_to);
1555
1556   return FALSE;
1557
1558 done:
1559   {
1560     /* so chapter $chapter and cell $cur contain our sector
1561      * of interest. Let's go there! */
1562     GST_INFO_OBJECT (src, "Seek succeeded, going to chapter %u, cell %u",
1563         chapter + 1, cur);
1564
1565     gst_dvd_read_src_goto_chapter (src, chapter);
1566     src->cur_cell = cur;
1567     src->next_cell = next;
1568     src->new_cell = FALSE;
1569     src->cur_pack = seek_to;
1570
1571     return TRUE;
1572   }
1573 }
1574
1575
1576 /*** URI interface ***/
1577
1578 static GstURIType
1579 gst_dvd_read_src_uri_get_type (void)
1580 {
1581   return GST_URI_SRC;
1582 }
1583
1584 static gchar **
1585 gst_dvd_read_src_uri_get_protocols (void)
1586 {
1587   static gchar *protocols[] = { "dvd", NULL };
1588
1589   return protocols;
1590 }
1591
1592 static const gchar *
1593 gst_dvd_read_src_uri_get_uri (GstURIHandler * handler)
1594 {
1595   GstDvdReadSrc *src = GST_DVD_READ_SRC (handler);
1596
1597   GST_OBJECT_LOCK (src);
1598
1599   g_free (src->last_uri);
1600   src->last_uri = g_strdup_printf ("dvd://%d,%d,%d", src->uri_title,
1601       src->uri_chapter, src->uri_angle);
1602
1603   GST_OBJECT_UNLOCK (src);
1604
1605   return src->last_uri;
1606 }
1607
1608 static gboolean
1609 gst_dvd_read_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
1610 {
1611   GstDvdReadSrc *src = GST_DVD_READ_SRC (handler);
1612   gboolean ret;
1613   gchar *protocol;
1614
1615   protocol = gst_uri_get_protocol (uri);
1616   ret = (protocol != NULL && g_str_equal (protocol, "dvd"));
1617   g_free (protocol);
1618   protocol = NULL;
1619
1620   if (!ret)
1621     return ret;
1622
1623   /* parse out the new t/c/a and seek to them */
1624   {
1625     gchar *location = NULL;
1626     gchar **strs;
1627     gchar **strcur;
1628     gint pos = 0;
1629
1630     location = gst_uri_get_location (uri);
1631
1632     if (!location)
1633       return ret;
1634
1635     GST_OBJECT_LOCK (src);
1636
1637     src->uri_title = 1;
1638     src->uri_chapter = 1;
1639     src->uri_angle = 1;
1640
1641     strcur = strs = g_strsplit (location, ",", 0);
1642     while (strcur && *strcur) {
1643       gint val;
1644
1645       if (!sscanf (*strcur, "%d", &val))
1646         break;
1647
1648       if (val <= 0) {
1649         g_warning ("Invalid value %d in URI '%s'. Must be 1 or greater",
1650             val, location);
1651         break;
1652       }
1653
1654       switch (pos) {
1655         case 0:
1656           src->uri_title = val;
1657           break;
1658         case 1:
1659           src->uri_chapter = val;
1660           break;
1661         case 2:
1662           src->uri_angle = val;
1663           break;
1664       }
1665
1666       strcur++;
1667       pos++;
1668     }
1669
1670     if (pos > 0 && GST_OBJECT_FLAG_IS_SET (src, GST_BASE_SRC_STARTED)) {
1671       src->title = src->uri_title - 1;
1672       src->chapter = src->uri_chapter - 1;
1673       src->angle = src->uri_angle - 1;
1674       src->new_seek = TRUE;
1675     }
1676
1677     GST_OBJECT_UNLOCK (src);
1678
1679     g_strfreev (strs);
1680     g_free (location);
1681   }
1682
1683   return ret;
1684 }
1685
1686 static void
1687 gst_dvd_read_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
1688 {
1689   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
1690
1691   iface->get_type = gst_dvd_read_src_uri_get_type;
1692   iface->get_protocols = gst_dvd_read_src_uri_get_protocols;
1693   iface->get_uri = gst_dvd_read_src_uri_get_uri;
1694   iface->set_uri = gst_dvd_read_src_uri_set_uri;
1695 }
1696
1697 static void
1698 gst_dvd_read_src_do_init (GType dvdreadsrc_type)
1699 {
1700   static const GInterfaceInfo urihandler_info = {
1701     gst_dvd_read_src_uri_handler_init,
1702     NULL,
1703     NULL
1704   };
1705
1706   g_type_add_interface_static (dvdreadsrc_type, GST_TYPE_URI_HANDLER,
1707       &urihandler_info);
1708
1709   title_format = gst_format_register ("title", "DVD title");
1710   angle_format = gst_format_register ("angle", "DVD angle");
1711   sector_format = gst_format_register ("sector", "DVD sector");
1712   chapter_format = gst_format_register ("chapter", "DVD chapter");
1713 }
1714
1715 static gboolean
1716 plugin_init (GstPlugin * plugin)
1717 {
1718   GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
1719       "DVD reader element based on dvdreadsrc");
1720
1721 #ifdef ENABLE_NLS
1722   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
1723       LOCALEDIR);
1724   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
1725 #endif /* ENABLE_NLS */
1726
1727   if (!gst_element_register (plugin, "dvdreadsrc", GST_RANK_SECONDARY,
1728           GST_TYPE_DVD_READ_SRC)) {
1729     return FALSE;
1730   }
1731
1732   return TRUE;
1733 }
1734
1735 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
1736     GST_VERSION_MINOR,
1737     "dvdread",
1738     "Access a DVD with dvdread",
1739     plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);