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