]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/pixfmt.h
lavfi: remove unnecessary inclusion of libavcodec/avcodec.h in avfilter.h
[ffmpeg] / libavutil / pixfmt.h
index b3a8dd045a430683dae7c7368ff2991c6ecf30fc..820cd3f190d92b93661178fdd2248c7382c78802 100644 (file)
@@ -29,6 +29,9 @@
 
 #include "libavutil/avconfig.h"
 
+#define AVPALETTE_SIZE 1024
+#define AVPALETTE_COUNT 256
+
 /**
  * Pixel format.
  *
@@ -180,6 +183,7 @@ enum PixelFormat {
     PIX_FMT_0BGR,      ///< packed BGR 8:8:8, 32bpp, 0BGR0BGR...
     PIX_FMT_BGR0,      ///< packed BGR 8:8:8, 32bpp, BGR0BGR0...
     PIX_FMT_YUVA444P,  ///< planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
+    PIX_FMT_YUVA422P,  ///< planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
 
     PIX_FMT_NB,        ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
 };