From: Ziqing Hui zhui@codeweavers.com
--- include/codecapi.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/include/codecapi.h b/include/codecapi.h index 57bd0f795d8..5c580f9e415 100644 --- a/include/codecapi.h +++ b/include/codecapi.h @@ -155,6 +155,20 @@ enum eAVEncVideoOutputFrameRateConversion eAVEncVideoOutputFrameRateConversion_Alias = 2 };
+enum eAVEncVideoFilmContent +{ + eAVEncVideoFilmContent_VideoOnly = 0, + eAVEncVideoFilmContent_FilmOnly = 1, + eAVEncVideoFilmContent_Mixed = 2, +}; + +enum eAVEncVideoSourceScanType +{ + eAVEncVideoSourceScan_Automatic = 0, + eAVEncVideoSourceScan_Interlaced = 1, + eAVEncVideoSourceScan_Progressive = 2, +}; + DEFINE_GUID(CODECAPI_AVDecVideoAcceleration_H264, 0xf7db8a2f, 0x4f48, 0x4ee8, 0xae, 0x31, 0x8b, 0x6e, 0xbe, 0x55, 0x8a, 0xe2);
DEFINE_GUID(CODECAPI_AVEncCodecType, 0x08af4ac1, 0xf3f2, 0x4c74, 0x9d, 0xcf, 0x37, 0xf2, 0xec, 0x79, 0xf8, 0x26); @@ -257,4 +271,8 @@ DEFINE_GUID(CODECAPI_AVEncVideoMaxQP, 0x3daf6f66, 0xa6a7, 0x45e0, DEFINE_GUID(CODECAPI_AVEncVideoInverseTelecineEnable, 0x2ea9098b, 0xe76d, 0x4ccd, 0xa0, 0x30, 0xd3, 0xb8, 0x89, 0xc1, 0xb6, 0x4c); DEFINE_GUID(CODECAPI_AVEncVideoInverseTelecineThreshold, 0x40247d84, 0xe895, 0x497f, 0xb4, 0x4c, 0xb7, 0x45, 0x60, 0xac, 0xfe, 0x27);
+DEFINE_GUID(CODECAPI_AVEncVideoSourceIsBW, 0x42ffc49b, 0x1812, 0x4fdc, 0x8d, 0x24, 0x70, 0x54, 0xc5, 0x21, 0xe6, 0xeb); +DEFINE_GUID(CODECAPI_AVEncVideoSourceFilmContent, 0x1791c64b, 0xccfc, 0x4827, 0xa0, 0xed, 0x25, 0x57, 0x79, 0x3b, 0x2b, 0x1c); +DEFINE_GUID(CODECAPI_AVEncVideoForceSourceScanType, 0x1ef2065f, 0x058a, 0x4765, 0xa4, 0xfc, 0x8a, 0x86, 0x4c, 0x10, 0x30, 0x12); + #endif /* __CODECAPI_H */