Lines Matching refs:fourcc
143 uint32_t CanonicalFourCC(uint32_t fourcc);
146 inline std::string GetFourccName(uint32_t fourcc) { in GetFourccName() argument
148 name.push_back(static_cast<char>(fourcc & 0xFF)); in GetFourccName()
149 name.push_back(static_cast<char>((fourcc >> 8) & 0xFF)); in GetFourccName()
150 name.push_back(static_cast<char>((fourcc >> 16) & 0xFF)); in GetFourccName()
151 name.push_back(static_cast<char>((fourcc >> 24) & 0xFF)); in GetFourccName()
189 uint32_t fourcc; // Color space. FOURCC_ANY means that any color space is OK. member
205 Construct(format.width, format.height, format.interval, format.fourcc); in VideoFormat()
212 fourcc = cc; in Construct()
236 interval == format.interval && fourcc == format.fourcc;
244 return (fourcc < format.fourcc) ||
245 (fourcc == format.fourcc && width < format.width) ||
246 (fourcc == format.fourcc && width == format.width &&
248 (fourcc == format.fourcc && width == format.width &&