Home
last modified time | relevance | path

Searched refs:ChromaFormat (Results 1 – 2 of 2) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
DChromaFormat.java28 public class ChromaFormat { class
29 public static ChromaFormat MONOCHROME = new ChromaFormat(0, 0, 0);
30 public static ChromaFormat YUV_420 = new ChromaFormat(1, 2, 2);
31 public static ChromaFormat YUV_422 = new ChromaFormat(2, 2, 1);
32 public static ChromaFormat YUV_444 = new ChromaFormat(3, 1, 1);
38 public ChromaFormat(int id, int subWidth, int subHeight) { in ChromaFormat() method in ChromaFormat
44 public static ChromaFormat fromId(int id) { in fromId()
DSeqParameterSet.java46 public ChromaFormat chroma_format_idc;
96 sps.chroma_format_idc = ChromaFormat.fromId(reader in read()
98 if (sps.chroma_format_idc == ChromaFormat.YUV_444) { in read()
114 sps.chroma_format_idc = ChromaFormat.YUV_420; in read()
325 if (chroma_format_idc == ChromaFormat.YUV_444) { in write()