[9] review request: 8131888: Deliver javafx.swt as a modular jar in JDK 9

2016-05-25 Thread Kevin Rushforth
Please review the following: https://bugs.openjdk.java.net/browse/JDK-8131888 http://cr.openjdk.java.net/~kcr/8131888/webrev.00/ This adds support for the javafx.embed.swt package back into the JDK, which will be delivered as an automatic module in $JAVA_HOME/lib/javafx-swt.jar (final

Re: OSX+Radeon crash VideoDataBuffer.convert YCbCr_422 -> BGRA_PRE

2016-05-25 Thread Chris Newland
Thanks Kevin, filed RFE with Review ID: JI-9038459. I've found this was a really powerful way to do things like real-time chroma keying (green screening) in JavaFX so will keep an OpenJFX snapshot around to preserve this functionality. Will be releasing another JavaFX tech demo soon :) Cheers,

Re: OSX+Radeon crash VideoDataBuffer.convert YCbCr_422 -> BGRA_PRE

2016-05-25 Thread Kevin Rushforth
I'm not surprised this causes problems, as it is almost certainly not thread-safe. FWIW, this impl_ method is already inaccessible in JDK 9 because it returns a type that is not exported from the javafx.media module. Further, this methods will go away very soon as part of the ongoing

Review request for JDK-8141385

2016-05-25 Thread Andrey Rusakov
Hello, Everyone. Please look at my fix for JDK-8141385 : http://cr.openjdk.java.net/~arusakov/8141385/webrev.00 Actually, that is Jonathan's bug, I've occasionally meet it during testing and decided to fix it.

OSX+Radeon crash VideoDataBuffer.convert YCbCr_422 -> BGRA_PRE

2016-05-25 Thread Chris Newland
Hi, This is really just an FYI as I'm doing funky stuff with multiple MediaPlayers and using the deprecated impl_getLatestFrame() method to grab frames. I can grab frames fine with a single MediaPlayer instance but when I use multiple MediaPlayer objects each with an AnimationTimer calling this