aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl/util/av
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-12-18 05:49:02 +0100
committerSven Gothel <[email protected]>2023-12-18 05:49:02 +0100
commitd99c2d8b28470d335ab5b30124ef8b0607b3b90f (patch)
treedffb5903953588f13739913898882cf4d5be79e5 /src/jogl/classes/com/jogamp/opengl/util/av
parent121260d2b7bc4f57a16ca53ed1b08082d7977bbe (diff)
GLMediaPlayer: Add printNativeInfo(..) exposing used native library information (if any), FFMPEG* utilizes NativeLibrary.get[Native]LibraryPath()
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/av')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java
index 740d0fda8..8d2287acc 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java
@@ -33,6 +33,7 @@ import com.jogamp.opengl.GLException;
import jogamp.opengl.Debug;
+import java.io.PrintStream;
import java.util.List;
import com.jogamp.common.av.AudioFormat;
@@ -412,6 +413,9 @@ public interface GLMediaPlayer extends TextureSequence {
}
}
+ /** Print native library information of used implementation to given out PrintStream. */
+ public void printNativeInfo(final PrintStream out);
+
public int getTextureCount();
/** Sets the texture unit. Defaults to 0. */