v4l2-image-sizes.h 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Standard image size definitions
  3. *
  4. * Copyright (C) 2013, Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef _IMAGE_SIZES_H
  11. #define _IMAGE_SIZES_H
  12. #define CIF_WIDTH 352
  13. #define CIF_HEIGHT 288
  14. #define QCIF_WIDTH 176
  15. #define QCIF_HEIGHT 144
  16. #define QQCIF_WIDTH 88
  17. #define QQCIF_HEIGHT 72
  18. #define QQVGA_WIDTH 160
  19. #define QQVGA_HEIGHT 120
  20. #define QVGA_WIDTH 320
  21. #define QVGA_HEIGHT 240
  22. #define SVGA_WIDTH 800
  23. #define SVGA_HEIGHT 600
  24. #define SXGA_WIDTH 1280
  25. #define SXGA_HEIGHT 1024
  26. #define VGA_WIDTH 640
  27. #define VGA_HEIGHT 480
  28. #define UXGA_WIDTH 1600
  29. #define UXGA_HEIGHT 1200
  30. #define XGA_WIDTH 1024
  31. #define XGA_HEIGHT 768
  32. #endif /* _IMAGE_SIZES_H */