/* * Copyright (C) 2000-2005 the xine project * * Copyright (C) 2009 Petri Hintukainen * * This file is part of xine, a free video player. * * xine is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * xine is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA * * Input plugin for BluRay discs / images * * Requires libbluray from http://bd.videolan.org/ * Tested with SVN revision 498 * */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* asprintf: */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #define LOG_MODULE "input_bluray" #define LOG_VERBOSE #define LOG #define LOGMSG(x...) xine_log (this->stream->xine, XINE_LOG_MSG, "input_bluray: " x); #ifdef HAVE_CONFIG_H # include "xine_internal.h" # include "input_plugin.h" #else # include # include #endif #ifndef EXPORTED # define EXPORTED __attribute__((visibility("default"))) #endif #ifndef MIN # define MIN(a,b) ((a)<(b)?(a):(b)) #endif #ifndef MAX # define MAX(a,b) ((a)>(b)?(a):(b)) #endif #define ALIGNED_UNIT_SIZE 6144 #define PKT_SIZE 192 #define TICKS_IN_MS 45 typedef struct { input_class_t input_class; xine_t *xine; /* config */ char *mountpoint; char *keyfile; char *device; } bluray_input_class_t; typedef struct { input_plugin_t input_plugin; xine_stream_t *stream; xine_event_queue_t *event_queue; bluray_input_class_t *class; char *mrl; char *disc_root; BLURAY *bdh; } bluray_input_plugin_t; static int open_title (bluray_input_plugin_t *this, int title) { if (bd_select_playlist(this->bdh, title) <= 0 || !this->bdh->title) { LOGMSG("bd_select_playlist(%d) failed\n", title); return 0; } #ifdef LOG int ms = this->bdh->title->duration / TICKS_IN_MS; lprintf("Opened playlist %s. Length %"PRId64" bytes / %02d:%02d:%02d.%03d\n", this->bdh->title->name, (int64_t)this->bdh->title->packets * PKT_SIZE, ms / 3600000, (ms % 3600000 / 60000), (ms % 60000) / 1000, ms % 1000); #endif /* set stream metainfo */ /* title */ if (strcmp(this->disc_root, this->class->mountpoint)) { char *t = strrchr(this->disc_root, '/'); if (!t[1]) while (t > this->disc_root && t[-1] != '/') t--; t = strdup(t); if (t[strlen(t)-1] == '/') t[strlen(t)-1] = 0; _x_meta_info_set(this->stream, XINE_META_INFO_TITLE, t); free(t); } _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_TITLE_NUMBER, title); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_ANGLE_NUMBER, this->bdh->title->angle); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_CHAPTER_NUMBER, 1); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_CHAPTER_COUNT, this->bdh->title->chap_list.count); _x_stream_info_set(this->stream, XINE_STREAM_INFO_HAS_CHAPTERS, this->bdh->title->chap_list.count>0); uint64_t rate = this->bdh->title->packets * UINT64_C(192) * UINT64_C(8) // bits * INT64_C(45000) // tick is 1/45000s / (uint64_t)(this->bdh->title->duration); _x_stream_info_set(this->stream, XINE_STREAM_INFO_BITRATE, rate); int krate = (int)(rate / UINT64_C(1024)); int s = this->bdh->title->duration / 45000; int h = s / 3600; s -= h*3600; int m = s / 60; s -= m*60; int f = this->bdh->title->duration % 45000; f = f * 1000 / 45000; LOGMSG("BluRay stream: length: %d:%d:%d.%03d\n" " bitrate: %d.%03d Mbps\n\n", h, m, s, f, krate/1024, (krate%1024)*1000/1024); return 1; } static void handle_events(bluray_input_plugin_t *this) { if (!this->event_queue) return; xine_event_t *event; while (NULL != (event = xine_event_get(this->event_queue))) { if (!this->bdh || !this->bdh->title) { xine_event_free(event); return; } switch (event->type) { case XINE_EVENT_INPUT_ANGLE_NEXT: { int angle = MIN(8, this->bdh->angle - 1); lprintf("XINE_EVENT_INPUT_ANGLE_NEXT: set angle %d --> %d\n", this->bdh->angle, angle); bd_seamless_angle_change(this->bdh, angle); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_ANGLE_NUMBER, angle); break; } case XINE_EVENT_INPUT_ANGLE_PREVIOUS: { int angle = MAX(0, this->bdh->angle - 1); lprintf("XINE_EVENT_INPUT_ANGLE_PREVIOUS: set angle %d --> %d\n", this->bdh->angle, angle); bd_seamless_angle_change(this->bdh, angle); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_ANGLE_NUMBER, angle); break; } } xine_event_free(event); } } /* * xine plugin interface */ static uint32_t bluray_plugin_get_capabilities (input_plugin_t *this_gen) { return INPUT_CAP_SEEKABLE | INPUT_CAP_BLOCK | INPUT_CAP_AUDIOLANG | INPUT_CAP_SPULANG; } static off_t bluray_plugin_read (input_plugin_t *this_gen, char *buf, off_t len) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; if (!this || !this->bdh || len < 0) return -1; handle_events(this); off_t result = bd_read (this->bdh, (unsigned char *)buf, len); if (result < 0) LOGMSG("bd_read() failed: %s (%d of %d)\n", strerror(errno), (int)result, (int)len); #if 0 if (buf[4] != 0x47) { LOGMSG("bd_read(): invalid data ? [%02x %02x %02x %02x %02x ...]\n", buf[0], buf[1], buf[2], buf[3], buf[4]); return 0; } #endif return result; } static buf_element_t *bluray_plugin_read_block (input_plugin_t *this_gen, fifo_buffer_t *fifo, off_t todo) { buf_element_t *buf = fifo->buffer_pool_alloc (fifo); if (todo > (off_t)buf->max_size) todo = buf->max_size; if (todo > ALIGNED_UNIT_SIZE) todo = ALIGNED_UNIT_SIZE; if (todo > 0) { buf->size = bluray_plugin_read(this_gen, (char*)buf->mem, todo); buf->type = BUF_DEMUX_BLOCK; if (buf->size > 0) return buf; } buf->free_buffer (buf); return NULL; } static off_t bluray_plugin_seek (input_plugin_t *this_gen, off_t offset, int origin) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; if (!this || !this->bdh) return -1; /* convert relative seeks to absolute */ if (origin == SEEK_CUR) { offset = bd_tell(this->bdh) + offset; } else if (origin == SEEK_END) { if (offset < bd_get_title_size(this->bdh)) offset = bd_get_title_size(this->bdh) - offset; else offset = 0; } lprintf("bluray_plugin_seek() seeking to %lld\n", (long long)offset); return bd_seek (this->bdh, offset); } static off_t bluray_plugin_get_current_pos (input_plugin_t *this_gen) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; return this->bdh ? bd_tell(this->bdh) : 0; } static off_t bluray_plugin_get_length (input_plugin_t *this_gen) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; return this->bdh ? bd_get_title_size(this->bdh) : -1; } static uint32_t bluray_plugin_get_blocksize (input_plugin_t *this_gen) { return ALIGNED_UNIT_SIZE; } static const char* bluray_plugin_get_mrl (input_plugin_t *this_gen) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; return this->mrl; } static int bluray_plugin_get_optional_data (input_plugin_t *this_gen, void *data, int data_type) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; if (!this || !this->stream || !data) return INPUT_OPTIONAL_UNSUPPORTED; switch (data_type) { case INPUT_OPTIONAL_DATA_DEMUXER: #ifdef HAVE_CONFIG_H *(const char **)data = "mpeg-ts"; #else *(const char **)data = "mpeg-ts-hdmv"; #endif return INPUT_OPTIONAL_SUCCESS; /* * audio track language: * - channel number can be mpeg-ts PID (0x1100 ... 0x11ff) */ case INPUT_OPTIONAL_DATA_AUDIOLANG: if (this->bdh->title) { int channel = *((int *)data); CLPI_PROG *prog = &this->bdh->title->clip_list.clip->cl->program.progs[0]; int i, n = 0; for (i=0 ; i < prog->num_streams; i++) if (prog->streams[i].pid >= 0x1100 && prog->streams[i].pid < 0x1200) { /* audio stream #n */ if (channel == n || channel == prog->streams[i].pid) { memcpy(data, prog->streams[i].lang, 4); lprintf("INPUT_OPTIONAL_DATA_AUDIOLANG: ch %d pid %x: %s\n", channel, prog->streams[i].pid, prog->streams[i].lang); return INPUT_OPTIONAL_SUCCESS; } n++; } } return INPUT_OPTIONAL_UNSUPPORTED; /* * SPU track language: * - channel number can be mpeg-ts PID (0x1200 ... 0x12ff) */ case INPUT_OPTIONAL_DATA_SPULANG: if (this->bdh->title) { int channel = *((int *)data); CLPI_PROG *prog = &this->bdh->title->clip_list.clip->cl->program.progs[0]; int i, n = 0; for (i=0 ; i < prog->num_streams; i++) if (prog->streams[i].pid >= 0x1200 && prog->streams[i].pid < 0x1300 && prog->streams[i].coding_type >= 0x90 && prog->streams[i].coding_type <= 0x92) { /* subtitle stream #n */ if (channel == n || channel == prog->streams[i].pid) { memcpy(data, prog->streams[i].lang, 4); lprintf("INPUT_OPTIONAL_DATA_SPULANG: ch %d pid %x: %s\n", channel, prog->streams[i].pid, prog->streams[i].lang); return INPUT_OPTIONAL_SUCCESS; } n++; } } return INPUT_OPTIONAL_UNSUPPORTED; default: return DEMUX_OPTIONAL_UNSUPPORTED; } return INPUT_OPTIONAL_UNSUPPORTED; } static void bluray_plugin_dispose (input_plugin_t *this_gen) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; if (this->event_queue) xine_event_dispose_queue(this->event_queue); if (this->bdh) bd_close(this->bdh); free (this->mrl); free (this->disc_root); free (this); } static int bluray_plugin_open (input_plugin_t *this_gen) { bluray_input_plugin_t *this = (bluray_input_plugin_t *) this_gen; int title = -1, chapter = 0; lprintf("bluray_plugin_open\n"); /* validate mrl */ if (strncasecmp (this->mrl, "bluray:", 7)) return -1; if (!strcasecmp (this->mrl, "bluray:") || !strcasecmp (this->mrl, "bluray:/") || !strcasecmp (this->mrl, "bluray://") || !strcasecmp (this->mrl, "bluray:///")) { this->disc_root = strdup(this->class->mountpoint); } else if (!strncasecmp (this->mrl, "bluray:/", 8)) { if (!strncasecmp (this->mrl, "bluray:///", 10)) this->disc_root = strdup(this->mrl + 9); else if (!strncasecmp (this->mrl, "bluray://", 9)) this->disc_root = strdup(this->mrl + 8); else this->disc_root = strdup(this->mrl + 7); _x_mrl_unescape(this->disc_root); if (this->disc_root[strlen(this->disc_root)-1] != '/') { char *end = strrchr(this->disc_root, '/'); if (end && end[1]) if (sscanf(end, "/%d.%d", &title, &chapter) < 1) title = -1; *end = 0; } } else { return -1; } /* if title was not in mrl, find the main title */ if (title < 0) { char *main_title = nav_find_main_title(this->disc_root); title = 0; if (main_title) { if (sscanf(main_title, "%d.mpls", &title) != 1) title = -1; lprintf("main title: %s (%d) \n", main_title, title); } else { LOGMSG("nav_find_main_title(%s) failed\n", this->disc_root); } } /* open libbluray */ /* replace ~/ in keyfile path */ char *keyfile = NULL; if (this->class->keyfile && !strncmp(this->class->keyfile, "~/", 2)) if (asprintf(&keyfile, "%s/%s", xine_get_homedir(), this->class->keyfile + 2) < 0) keyfile = NULL; /* open */ if (! (this->bdh = bd_open (this->disc_root, keyfile ?: this->class->keyfile))) { LOGMSG("bd_open(\'%s\') failed: %s\n", this->disc_root, strerror(errno)); free(keyfile); return -1; } free(keyfile); lprintf("bd_open(\'%s\') OK\n", this->disc_root); /* select title */ int num_titles = bd_get_titles(this->bdh, TITLES_RELEVANT); LOGMSG("%d relevant titles\n", num_titles); if (open_title(this, title) <= 0 && open_title(this, 1) <= 0) return -1; /* jump to chapter */ if (chapter > 0) { bd_seek_chapter(this->bdh, chapter); _x_stream_info_set(this->stream, XINE_STREAM_INFO_DVD_CHAPTER_NUMBER, chapter); } return 1; } static input_plugin_t *bluray_class_get_instance (input_class_t *cls_gen, xine_stream_t *stream, const char *mrl) { bluray_input_plugin_t *this; lprintf("bluray_class_get_instance\n"); if (strncasecmp (mrl, "bluray:", 7)) return NULL; this = (bluray_input_plugin_t *) calloc(1, sizeof (bluray_input_plugin_t)); this->stream = stream; this->class = (bluray_input_class_t*)cls_gen; this->mrl = strdup(mrl); this->input_plugin.open = bluray_plugin_open; this->input_plugin.get_capabilities = bluray_plugin_get_capabilities; this->input_plugin.read = bluray_plugin_read; this->input_plugin.read_block = bluray_plugin_read_block; this->input_plugin.seek = bluray_plugin_seek; this->input_plugin.get_current_pos = bluray_plugin_get_current_pos; this->input_plugin.get_length = bluray_plugin_get_length; this->input_plugin.get_blocksize = bluray_plugin_get_blocksize; this->input_plugin.get_mrl = bluray_plugin_get_mrl; this->input_plugin.get_optional_data = bluray_plugin_get_optional_data; this->input_plugin.dispose = bluray_plugin_dispose; this->input_plugin.input_class = cls_gen; this->event_queue = xine_event_new_queue (this->stream); return &this->input_plugin; } /* * plugin class */ static void mountpoint_change_cb(void *data, xine_cfg_entry_t *cfg) { bluray_input_class_t *this = (bluray_input_class_t *) data; this->mountpoint = cfg->str_value; } static void device_change_cb(void *data, xine_cfg_entry_t *cfg) { bluray_input_class_t *this = (bluray_input_class_t *) data; this->device = cfg->str_value; } static void keyfile_change_cb(void *data, xine_cfg_entry_t *cfg) { bluray_input_class_t *this = (bluray_input_class_t *) data; this->keyfile = cfg->str_value; } static const char *bluray_class_get_description (input_class_t *this_gen) { return _("BluRay input plugin"); } static const char *bluray_class_get_identifier (input_class_t *this_gen) { return "bluray"; } static char **bluray_class_get_autoplay_list (input_class_t *this_gen, int *num_files) { static char *autoplay_list[] = { "bluray:/", NULL }; *num_files = 1; return autoplay_list; } static int bluray_class_eject_media (input_class_t *this_gen) { #if 0 bluray_input_class_t *this = (bluray_input_class_t*) this_gen; return media_eject_media (this->xine, this->device); #endif return 1; } static void bluray_class_dispose (input_class_t *this_gen) { bluray_input_class_t *this = (bluray_input_class_t *) this_gen; config_values_t *config = this->xine->config; config->unregister_callback(config, "media.bluray.mountpoint"); config->unregister_callback(config, "media.bluray.device"); config->unregister_callback(config, "media.bluray.keyfile"); free (this); } static void *bluray_init_plugin (xine_t *xine, void *data) { config_values_t *config = xine->config; bluray_input_class_t *this = (bluray_input_class_t *) calloc(1, sizeof (bluray_input_class_t)); this->xine = xine; this->input_class.get_instance = bluray_class_get_instance; this->input_class.get_identifier = bluray_class_get_identifier; this->input_class.get_description = bluray_class_get_description; this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = bluray_class_get_autoplay_list; this->input_class.dispose = bluray_class_dispose; this->input_class.eject_media = bluray_class_eject_media; this->mountpoint = config->register_filename(config, "media.bluray.mountpoint", "/mnt/bluray", XINE_CONFIG_STRING_IS_DIRECTORY_NAME, _("BluRay mount point"), _("Default mount location for BluRay discs."), 0, mountpoint_change_cb, (void *) this); this->device = config->register_filename(config, "media.bluray.device", "/dev/dvd", XINE_CONFIG_STRING_IS_DIRECTORY_NAME, _("device used for BluRay playback"), _("The path to the device " "which you intend to use for playing BluRy discs."), 0, device_change_cb, (void *) this); this->keyfile = config->register_filename(config, "media.bluray.keyfile", "~/.xine/aacskeys.bin", XINE_CONFIG_STRING_IS_DIRECTORY_NAME, _("AACS key file"), _("Location of libaacs key file."), 0, keyfile_change_cb, (void *) this); return this; } /* * exported plugin catalog entry */ const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_INPUT | PLUGIN_MUST_PRELOAD, 17, "BLURAY", XINE_VERSION_CODE, NULL, bluray_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } };