Lines Matching +full:0 +full:xde
26 * 0x00 1 Header length
27 * 0x01 1 Flags (UVC-compliant)
28 * 0x02 4 Always equal to '11223344'
29 * 0x06 8 Always equal to 'deadbeefdeadface'
30 * 0x0e 16 Unknown
39 0x11, 0x22, 0x33, 0x44, in isight_decode()
40 0xde, 0xad, 0xbe, 0xef, in isight_decode()
41 0xde, 0xad, 0xfa, 0xce in isight_decode()
47 int is_header = 0; in isight_decode()
50 return 0; in isight_decode()
52 if ((len >= 14 && memcmp(&data[2], hdr, 12) == 0) || in isight_decode()
53 (len >= 15 && memcmp(&data[3], hdr, 12) == 0)) { in isight_decode()
63 return 0; in isight_decode()
72 * Empty buffers (bytesused == 0) don't trigger end of frame detection in isight_decode()
75 if (is_header && buf->bytesused != 0) { in isight_decode()
98 return 0; in isight_decode()
108 for (i = 0; i < urb->number_of_packets; ++i) { in uvc_video_decode_isight()
109 if (urb->iso_frame_desc[i].status < 0) { in uvc_video_decode_isight()