Advertisement
Guest User

Untitled

a guest
May 31st, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. 2.6 kernel
  2. struct v4l2_event {
  3. __u32 type;
  4. union {
  5. __u8 data[64];
  6. } u;
  7. __u32 pending;
  8. __u32 sequence;
  9. struct timespec timestamp;
  10. __u32 reserved[9];
  11. };
  12.  
  13. 3.5 kernel
  14. struct v4l2_event {
  15. __u32 type;
  16. union {
  17. struct v4l2_event_vsync vsync;
  18. struct v4l2_event_ctrl ctrl;
  19. struct v4l2_event_frame_sync frame_sync;
  20. __u8 data[64];
  21. } u;
  22. __u32 pending;
  23. __u32 sequence;
  24. struct timespec timestamp;
  25. __u32 id;
  26. __u32 reserved[8];
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement