1 #pragma once
2 
3 #include "VapourSynth.h"
4 
5 /* New API V4 constants */
6 typedef enum VSColorFamilyV4 {
7     cfUndefined = 0,
8     cfGray      = 1,
9     cfRGB       = 2,
10     cfYUV       = 3,
11 } VSColorFamilyV4;
12