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