com.smaxe.uv.media.core
Class VideoTrackInfo

java.lang.Object
  extended by com.smaxe.uv.media.core.VideoTrackInfo

public final class VideoTrackInfo
extends java.lang.Object

VideoTrackInfo - video track specific info.

Version:
0.3.0
Author:
Andrei Sochirca
See Also:
JUV Media SDK

Field Summary
 int depth
          frame pixel depth.
 int height
          frame height.
 int[] palette
          frame palette.
 int width
          frame width.
 
Constructor Summary
VideoTrackInfo(int width, int height)
          Constructor.
VideoTrackInfo(int width, int height, int depth, int[] palette)
          Constructor.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

width

public final int width
frame width.


height

public final int height
frame height.


depth

public final int depth
frame pixel depth.


palette

public final int[] palette
frame palette.

Constructor Detail

VideoTrackInfo

public VideoTrackInfo(int width,
                      int height)
Constructor.

Parameters:
width -
height -

VideoTrackInfo

public VideoTrackInfo(int width,
                      int height,
                      int depth,
                      int[] palette)
Constructor.

Parameters:
width -
height -
depth -
palette -
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object