aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
diff options
context:
space:
mode:
authorSven Gothel <sgothel@jausoft.com>2023-12-18 05:49:02 +0100
committerSven Gothel <sgothel@jausoft.com>2023-12-18 05:49:02 +0100
commitd99c2d8b28470d335ab5b30124ef8b0607b3b90f (patch)
treedffb5903953588f13739913898882cf4d5be79e5 /src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
parent121260d2b7bc4f57a16ca53ed1b08082d7977bbe (diff)
GLMediaPlayer: Add printNativeInfo(..) exposing used native library information (if any), FFMPEG* utilizes NativeLibrary.get[Native]LibraryPath()
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java')
-rw-r--r--src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java b/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
index d616020e7..9b2b3869c 100644
--- a/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
+++ b/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
@@ -28,6 +28,7 @@
package jogamp.opengl.util.av;
import java.io.IOException;
+import java.io.PrintStream;
import java.net.URLConnection;
import java.nio.ByteBuffer;
@@ -60,6 +61,11 @@ public class NullGLMediaPlayer extends GLMediaPlayerImpl {
}
@Override
+ public final void printNativeInfo(final PrintStream out) {
+ out.println("NullGLMediaPlayer: available true");
+ }
+
+ @Override
protected final boolean setPlaySpeedImpl(final float rate) {
return false;
}