libbluray | branch: master | hpi1 <[email protected]> | Sun Apr 5 20:58:00 2015 +0300| [66f8bcad74960da8ddbb30bea1148d4d98b41e9f] | committer: hpi1
Log unimplemented feature > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=66f8bcad74960da8ddbb30bea1148d4d98b41e9f --- .../bdj/java/org/bluray/ti/selection/TitleContextImpl.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/libbluray/bdj/java/org/bluray/ti/selection/TitleContextImpl.java b/src/libbluray/bdj/java/org/bluray/ti/selection/TitleContextImpl.java index 1b7a956..4cc2562 100644 --- a/src/libbluray/bdj/java/org/bluray/ti/selection/TitleContextImpl.java +++ b/src/libbluray/bdj/java/org/bluray/ti/selection/TitleContextImpl.java @@ -51,6 +51,9 @@ public class TitleContextImpl implements TitleContext { throw new IllegalStateException(); if (state == STATE_STOPPED) return new ServiceContentHandler[0]; + + org.videolan.Logger.unimplemented("TitleContextImpl", "getServiceContentHandlers"); + ServiceContentHandler[] handler = new ServiceContentHandler[1]; handler[0] = new Handler(); return handler; @@ -70,6 +73,9 @@ public class TitleContextImpl implements TitleContext { public void select(Locator[] locators) throws InvalidLocatorException, InvalidServiceComponentException, SecurityException { + + org.videolan.Logger.unimplemented("TitleContextImpl", "select(Locator[])"); + select(SIManager.createInstance().getService(locators[0])); } _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
