vsp1.h 722 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * vsp1.h
  3. *
  4. * Renesas R-Car VSP1 - User-space API
  5. *
  6. * Copyright (C) 2013 Renesas Corporation
  7. *
  8. * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #ifndef __VSP1_USER_H__
  15. #define __VSP1_USER_H__
  16. #include <linux/types.h>
  17. #include <linux/videodev2.h>
  18. /*
  19. * Private IOCTLs
  20. *
  21. * VIDIOC_VSP1_LUT_CONFIG - Configure the lookup table
  22. */
  23. #define VIDIOC_VSP1_LUT_CONFIG \
  24. _IOWR('V', BASE_VIDIOC_PRIVATE + 1, struct vsp1_lut_config)
  25. struct vsp1_lut_config {
  26. __u32 lut[256];
  27. };
  28. #endif /* __VSP1_USER_H__ */