Home | History | Annotate | Download | only in base

Lines Matching full:fourcc

85                               GetCaptureFormat()->fourcc);
87 bool CaptureCustomFrame(int width, int height, uint32_t fourcc) {
89 return CaptureCustomFrame(width, height, 33333333, fourcc);
94 uint32_t fourcc) {
98 // Currently, |fourcc| is always I420 or ARGB.
99 // TODO(fbarchard): Extend SizeOf to take fourcc.
101 if (fourcc == cricket::FOURCC_ARGB) {
103 } else if (fourcc == cricket::FOURCC_I420) {
106 return false; // Unsupported FOURCC.
115 frame.fourcc = fourcc;
127 memcpy(frame.data, reinterpret_cast<const uint8_t*>(&fourcc), 4);