diff options
author | phintuka <phintuka> | 2009-11-09 10:30:08 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-11-09 10:30:08 +0000 |
commit | 67e6210e42ad5266d8fa2d5de1a733decc0e2890 (patch) | |
tree | 5e41d5ffe87c5cc17f609527bb68b014c967fd8b | |
parent | 28bc1757bd6b9a50a53fd464b4d194f80cd3adbd (diff) | |
download | xineliboutput-67e6210e42ad5266d8fa2d5de1a733decc0e2890.tar.gz xineliboutput-67e6210e42ad5266d8fa2d5de1a733decc0e2890.tar.bz2 |
Added INPUT_CAP_AUDIOLANG and INPUT_CAP_SPULANG
-rw-r--r-- | xine/BluRay/input_bluray.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xine/BluRay/input_bluray.c b/xine/BluRay/input_bluray.c index a59632fb..3a8be2ff 100644 --- a/xine/BluRay/input_bluray.c +++ b/xine/BluRay/input_bluray.c @@ -99,7 +99,10 @@ typedef struct { static uint32_t bluray_plugin_get_capabilities (input_plugin_t *this_gen) { - return INPUT_CAP_SEEKABLE /*| INPUT_CAP_BLOCK*/; + return INPUT_CAP_SEEKABLE | + INPUT_CAP_AUDIOLANG | + INPUT_CAP_SPULANG | + 0/*INPUT_CAP_BLOCK*/; } static off_t bluray_plugin_read (input_plugin_t *this_gen, char *buf, off_t len) |