diff options
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java b/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java index 9099bfb08..03b61b9ef 100644 --- a/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java +++ b/src/jogl/classes/jogamp/opengl/util/av/impl/FFMPEGNatives.java @@ -71,6 +71,12 @@ import com.jogamp.opengl.util.texture.TextureSequence.TextureFrame; abstract int getAudioPTS0(long moviePtr); + abstract int getChapterCount0(long moviePtr); + abstract int getChapterID0(long moviePtr, int idx); + abstract int getChapterStartPTS0(long moviePtr, int idx); + abstract int getChapterEndPTS0(long moviePtr, int idx); + abstract String getChapterTitle0(long moviePtr, int idx); + /** * @return resulting current video PTS, or {@link TextureFrame#INVALID_PTS} */ |