aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-01-27 07:58:44 +0100
committerSven Göthel <[email protected]>2024-01-27 07:58:44 +0100
commitb2bd320e2b688097f0d5171eb6e89e985909c7b7 (patch)
tree43a5d38fa41137c550a08de71e8bb8a06b43ff4e /src/jogl/classes/com/jogamp/opengl
parent0b908ee7fc80344118d3fa6d4d92ebb082968cb3 (diff)
GLMediaPlayer: Support tile metadata
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java8
1 files changed, 8 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 d129af621..646280f08 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java
@@ -862,6 +862,14 @@ public interface GLMediaPlayer extends TextureSequence {
/** Returns the height of the video. */
public int getHeight();
+ /**
+ * Returns title meta-data from stream, available after {@link State#Initialized} is reached after issuing {@link #playStream(Uri, int, int, int, int)}.
+ * <p>
+ * In case no title meta-data is being used, the {@link #getUri()} basename w/o suffix is being returned.
+ * </p>
+ */
+ public String getTitle();
+
/** Returns {@link Chapter} meta-data from stream, available after {@link State#Initialized} is reached after issuing {@link #playStream(Uri, int, int, int, int)}. */
public Chapter[] getChapters();
/**