Home | History | Annotate | Download | only in src

Lines Matching defs:fourcc

3078 		// Special pretty-print for FOURCC codes
3080 printf(" enumeration of u32 casted FOURCC: ");
3085 char fourcc[6];
3086 fourcc[0] = (opd.FORM.Enum.SupportedValue[k].u32 >> 24) & 0xFFU;
3087 fourcc[1] = (opd.FORM.Enum.SupportedValue[k].u32 >> 16) & 0xFFU;
3088 fourcc[2] = (opd.FORM.Enum.SupportedValue[k].u32 >> 8) & 0xFFU;
3089 fourcc[3] = opd.FORM.Enum.SupportedValue[k].u32 & 0xFFU;
3090 fourcc[4] = '\n';
3091 fourcc[5] = '\0';
3092 printf("\"%s\", ", fourcc);