]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/drawutils.h
avfilter/vf_waveform: add 12bit depth support
[ffmpeg] / libavfilter / drawutils.h
index e247dd64405010b325f49fcb1ddd289bbd782357..1fb3e4f2565395a6ab99b9ca1d9f26615f31bbaf 100644 (file)
@@ -60,9 +60,9 @@ typedef struct FFDrawContext {
 typedef struct FFDrawColor {
     uint8_t rgba[4];
     union {
-        uint32_t u32;
-        uint16_t u16;
-        uint8_t  u8[4];
+        uint32_t u32[4];
+        uint16_t u16[8];
+        uint8_t  u8[16];
     } comp[MAX_PLANES];
 } FFDrawColor;