multimedia.codec
Class VideoCodec

java.lang.Object
  |
  +--multimedia.codec.CodecAV
        |
        +--multimedia.codec.VideoCodec

public class VideoCodec
extends CodecAV


Field Summary
static int COMPRESSION
           
 CompressionType ct
           
static int FRAMES
           
 int framesSecond
           
 
Fields inherited from class multimedia.codec.CodecAV
paramNames
 
Constructor Summary
VideoCodec()
          VideoCodec par defaut
VideoCodec(int framesSecond, CompressionType ct)
          VideoCodec defines the number of image per seconde and the compression type
VideoCodec(int framesSecond, CompressionType ct, java.lang.String nameCodec)
          VideoCodec defines the number of image per seconde and the compression type
 
Method Summary
 CompressionType getCompression()
           
 int getFramesNumber()
           
 int getScale(int idx)
           
static void main(java.lang.String[] args)
          Methode: Main pour tester la classe
 void setCompression(CompressionType ct)
           
 void setFramesNumber(int frames)
           
 
Methods inherited from class multimedia.codec.CodecAV
getName, getParamName, getParamsNames
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

framesSecond

public int framesSecond

ct

public CompressionType ct

FRAMES

public static int FRAMES

COMPRESSION

public static int COMPRESSION
Constructor Detail

VideoCodec

public VideoCodec()
VideoCodec par defaut


VideoCodec

public VideoCodec(int framesSecond,
                  CompressionType ct)
VideoCodec defines the number of image per seconde and the compression type

Parameters:
framesSecond - it's an int

VideoCodec

public VideoCodec(int framesSecond,
                  CompressionType ct,
                  java.lang.String nameCodec)
VideoCodec defines the number of image per seconde and the compression type

Parameters:
framesSecond - it's an int
Method Detail

getFramesNumber

public int getFramesNumber()

setFramesNumber

public void setFramesNumber(int frames)

getCompression

public CompressionType getCompression()

setCompression

public void setCompression(CompressionType ct)

getScale

public int getScale(int idx)

main

public static void main(java.lang.String[] args)
Methode: Main pour tester la classe