Package org.ffmpeg.ffprobe
Class PixelFormatType
- java.lang.Object
-
- org.ffmpeg.ffprobe.PixelFormatType
-
public class PixelFormatType extends Object
Java class for pixelFormatType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="pixelFormatType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="flags" type="{http://www.ffmpeg.org/schema/ffprobe}pixelFormatFlagsType" minOccurs="0"/> <element name="components" type="{http://www.ffmpeg.org/schema/ffprobe}pixelFormatComponentsType" minOccurs="0"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="nb_components" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="log2_chroma_w" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="log2_chroma_h" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="bits_per_pixel" type="{http://www.w3.org/2001/XMLSchema}int" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected IntegerbitsPerPixelprotected PixelFormatComponentsTypecomponentsprotected PixelFormatFlagsTypeflagsprotected Integerlog2ChromaHprotected Integerlog2ChromaWprotected Stringnameprotected intnbComponents
-
Constructor Summary
Constructors Constructor Description PixelFormatType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetBitsPerPixel()Gets the value of the bitsPerPixel property.PixelFormatComponentsTypegetComponents()Gets the value of the components property.PixelFormatFlagsTypegetFlags()Gets the value of the flags property.IntegergetLog2ChromaH()Gets the value of the log2ChromaH property.IntegergetLog2ChromaW()Gets the value of the log2ChromaW property.StringgetName()Gets the value of the name property.intgetNbComponents()Gets the value of the nbComponents property.voidsetBitsPerPixel(Integer value)Sets the value of the bitsPerPixel property.voidsetComponents(PixelFormatComponentsType value)Sets the value of the components property.voidsetFlags(PixelFormatFlagsType value)Sets the value of the flags property.voidsetLog2ChromaH(Integer value)Sets the value of the log2ChromaH property.voidsetLog2ChromaW(Integer value)Sets the value of the log2ChromaW property.voidsetName(String value)Sets the value of the name property.voidsetNbComponents(int value)Sets the value of the nbComponents property.
-
-
-
Field Detail
-
flags
protected PixelFormatFlagsType flags
-
components
protected PixelFormatComponentsType components
-
name
protected String name
-
nbComponents
protected int nbComponents
-
log2ChromaW
protected Integer log2ChromaW
-
log2ChromaH
protected Integer log2ChromaH
-
bitsPerPixel
protected Integer bitsPerPixel
-
-
Method Detail
-
getFlags
public PixelFormatFlagsType getFlags()
Gets the value of the flags property.- Returns:
- possible object is
PixelFormatFlagsType
-
setFlags
public void setFlags(PixelFormatFlagsType value)
Sets the value of the flags property.- Parameters:
value- allowed object isPixelFormatFlagsType
-
getComponents
public PixelFormatComponentsType getComponents()
Gets the value of the components property.- Returns:
- possible object is
PixelFormatComponentsType
-
setComponents
public void setComponents(PixelFormatComponentsType value)
Sets the value of the components property.- Parameters:
value- allowed object isPixelFormatComponentsType
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getNbComponents
public int getNbComponents()
Gets the value of the nbComponents property.
-
setNbComponents
public void setNbComponents(int value)
Sets the value of the nbComponents property.
-
getLog2ChromaW
public Integer getLog2ChromaW()
Gets the value of the log2ChromaW property.- Returns:
- possible object is
Integer
-
setLog2ChromaW
public void setLog2ChromaW(Integer value)
Sets the value of the log2ChromaW property.- Parameters:
value- allowed object isInteger
-
getLog2ChromaH
public Integer getLog2ChromaH()
Gets the value of the log2ChromaH property.- Returns:
- possible object is
Integer
-
setLog2ChromaH
public void setLog2ChromaH(Integer value)
Sets the value of the log2ChromaH property.- Parameters:
value- allowed object isInteger
-
getBitsPerPixel
public Integer getBitsPerPixel()
Gets the value of the bitsPerPixel property.- Returns:
- possible object is
Integer
-
-