diff options
| author | phintuka <phintuka> | 2011-06-13 18:37:33 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-06-13 18:37:33 +0000 |
| commit | ed78297e2edc3cc2d5c10a1122e7d54c7caf8d70 (patch) | |
| tree | 992667320c193188977af32db84bbf9716152164 | |
| parent | 42072b8b965258873d578368fb3c8f15927abac2 (diff) | |
| download | xineliboutput-ed78297e2edc3cc2d5c10a1122e7d54c7caf8d70.tar.gz xineliboutput-ed78297e2edc3cc2d5c10a1122e7d54c7caf8d70.tar.bz2 | |
Support BluRay chapter/title seek
| -rw-r--r-- | xine_input_vdr.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 5e133bd1..6261238a 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.335 2011-03-24 09:57:44 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.336 2011-06-13 18:37:33 phintuka Exp $ * */ @@ -136,7 +136,7 @@ typedef struct { # include <linux/unistd.h> /* syscall(__NR_gettid) */ #endif -static const char module_revision[] = "$Id: xine_input_vdr.c,v 1.335 2011-03-24 09:57:44 phintuka Exp $"; +static const char module_revision[] = "$Id: xine_input_vdr.c,v 1.336 2011-06-13 18:37:33 phintuka Exp $"; static const char log_module_input_vdr[] = "[input_vdr] "; #define LOG_MODULENAME log_module_input_vdr #define SysLogLevel iSysLogLevel @@ -3050,12 +3050,16 @@ static int vdr_plugin_parse_control(vdr_input_plugin_if_t *this_if, const char * *pt = 0; this->class->xine->config->update_num(this->class->xine->config, "media.dvd.skip_behaviour", 1); + this->class->xine->config->update_num(this->class->xine->config, + "media.bluray.skip_behaviour", 0); } pt = strstr(cmd+6, " TITLE"); if(pt) { *pt = 0; this->class->xine->config->update_num(this->class->xine->config, "media.dvd.skip_behaviour", 2); + this->class->xine->config->update_num(this->class->xine->config, + "media.bluray.skip_behaviour", 1); } for(i=0; i<sizeof(eventmap)/sizeof(eventmap[0]); i++) if(!strcmp(cmd+6, eventmap[i].name)) { |
