diff options
author | Sven Gothel <[email protected]> | 2012-04-18 10:45:41 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-04-18 10:45:41 +0200 |
commit | 1152d3c3cb5d13b4e5543387bff7a73e78e27a71 (patch) | |
tree | 0f3e34a08311a879c8e67d7a1cd6eb919be532c1 /src/jogl/classes/com/jogamp/opengl/util | |
parent | 1e16a4cd123aafe41d51f01b41fad5a77c4ffbe3 (diff) |
GLMediaPlayer: Add Class / Package API doc incl. detailed info in the implementations.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java | 9 | ||||
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/av/package.html | 25 |
2 files changed, 34 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 8430d6137..3eca01986 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java +++ b/src/jogl/classes/com/jogamp/opengl/util/av/GLMediaPlayer.java @@ -48,6 +48,15 @@ import com.jogamp.opengl.util.texture.TextureSequence; * <tr><td>{@link #destroy(GL)}</td> <td>ANY</td> <td>Uninitialized</td></tr> * </table> * <p> + * Current implementations (check each API doc link for details): + * <ul> + * <li>{@link jogamp.opengl.util.av.NullGLMediaPlayer}</li> + * <li>{@link jogamp.opengl.util.av.impl.OMXGLMediaPlayer}</li> + * <li>{@link jogamp.opengl.util.av.impl.FFMPEGMediaPlayer}</li> + * <li>{@link jogamp.opengl.android.av.AndroidGLMediaPlayerAPI14}</li> + * </ul> + * </p> + * <p> * Variable type, value range and dimension has been chosen to suit embedded CPUs * and characteristics of audio and video streaming. * Milliseconds of type integer with a maximum value of {@link Integer#MAX_VALUE} diff --git a/src/jogl/classes/com/jogamp/opengl/util/av/package.html b/src/jogl/classes/com/jogamp/opengl/util/av/package.html new file mode 100644 index 000000000..249db7d30 --- /dev/null +++ b/src/jogl/classes/com/jogamp/opengl/util/av/package.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> + <title>Public Audio/Video Utility Package</title> +</head> + <body> + +<h2>Public <i>Audio/Video</i> Utility Package</h2> + +<h3>Disclaimer</h3> + <p> + We are currently refining and completing this new API and it's implementation. + Feel free to comment and help using our public channels. + </p> +<h3>Revision History<br> + </h3> + +<ul> +<li> Early Draft Review, April 17th 2012</li> +</ul> + <br> + <br> + <br> +</body> +</html> |