Home | History | Annotate | Download | only in model

Lines Matching refs:id

34     private int id;
38 public ChromaFormat(int id, int subWidth, int subHeight) {
39 this.id = id;
44 public static ChromaFormat fromId(int id) {
45 if (id == MONOCHROME.id) {
47 } else if (id == YUV_420.id) {
49 } else if (id == YUV_422.id) {
51 } else if (id == YUV_444.id) {
58 return id;
72 "id=" + id + ",\n" +