From d99c2d8b28470d335ab5b30124ef8b0607b3b90f Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 18 Dec 2023 05:49:02 +0100 Subject: GLMediaPlayer: Add printNativeInfo(..) exposing used native library information (if any), FFMPEG* utilizes NativeLibrary.get[Native]LibraryPath() --- src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java') 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; @@ -59,6 +60,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; -- cgit v1.2.3