You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.9KB

  1. #ifndef AVUTIL_H
  2. #define AVUTIL_H
  3. /**
  4. * @file avutil.h
  5. * external api header.
  6. */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #define AV_STRINGIFY(s) AV_TOSTRING(s)
  11. #define AV_TOSTRING(s) #s
  12. #define LIBAVUTIL_VERSION_INT ((49<<16)+(0<<8)+0)
  13. #define LIBAVUTIL_VERSION 49.0.0
  14. #define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
  15. #define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
  16. #include "common.h"
  17. #include "mathematics.h"
  18. #include "rational.h"
  19. #include "integer.h"
  20. #include "intfloat_readwrite.h"
  21. /**
  22. * Pixel format. Notes:
  23. *
  24. * PIX_FMT_RGBA32 is handled in an endian-specific manner. A RGBA
  25. * color is put together as:
  26. * (A << 24) | (R << 16) | (G << 8) | B
  27. * This is stored as BGRA on little endian CPU architectures and ARGB on
  28. * big endian CPUs.
  29. *
  30. * When the pixel format is palettized RGB (PIX_FMT_PAL8), the palettized
  31. * image data is stored in AVFrame.data[0]. The palette is transported in
  32. * AVFrame.data[1] and, is 1024 bytes long (256 4-byte entries) and is
  33. * formatted the same as in PIX_FMT_RGBA32 described above (i.e., it is
  34. * also endian-specific). Note also that the individual RGB palette
  35. * components stored in AVFrame.data[1] should be in the range 0..255.
  36. * This is important as many custom PAL8 video codecs that were designed
  37. * to run on the IBM VGA graphics adapter use 6-bit palette components.
  38. */
  39. enum PixelFormat {
  40. PIX_FMT_NONE= -1,
  41. PIX_FMT_YUV420P, ///< Planar YUV 4:2:0 (1 Cr & Cb sample per 2x2 Y samples)
  42. PIX_FMT_YUV422, ///< Packed pixel, Y0 Cb Y1 Cr
  43. PIX_FMT_RGB24, ///< Packed pixel, 3 bytes per pixel, RGBRGB...
  44. PIX_FMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR...
  45. PIX_FMT_YUV422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples)
  46. PIX_FMT_YUV444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples)
  47. PIX_FMT_RGBA32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA..., stored in cpu endianness
  48. PIX_FMT_YUV410P, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples)
  49. PIX_FMT_YUV411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples)
  50. PIX_FMT_RGB565, ///< always stored in cpu endianness
  51. PIX_FMT_RGB555, ///< always stored in cpu endianness, most significant bit to 1
  52. PIX_FMT_GRAY8,
  53. PIX_FMT_MONOWHITE, ///< 0 is white
  54. PIX_FMT_MONOBLACK, ///< 0 is black
  55. PIX_FMT_PAL8, ///< 8 bit with RGBA palette
  56. PIX_FMT_YUVJ420P, ///< Planar YUV 4:2:0 full scale (jpeg)
  57. PIX_FMT_YUVJ422P, ///< Planar YUV 4:2:2 full scale (jpeg)
  58. PIX_FMT_YUVJ444P, ///< Planar YUV 4:4:4 full scale (jpeg)
  59. PIX_FMT_XVMC_MPEG2_MC,///< XVideo Motion Acceleration via common packet passing(xvmc_render.h)
  60. PIX_FMT_XVMC_MPEG2_IDCT,
  61. PIX_FMT_UYVY422, ///< Packed pixel, Cb Y0 Cr Y1
  62. PIX_FMT_UYVY411, ///< Packed pixel, Cb Y0 Y1 Cr Y2 Y3
  63. PIX_FMT_NB,
  64. };
  65. #ifdef __cplusplus
  66. }
  67. #endif
  68. #endif /* AVUTIL_H */