vlc | branch: master | Steve Lhomme <[email protected]> | Fri Oct 27 08:56:40 2017 +0200| [8aca92dddb412dd596852e3867911c43a6afeec4] | committer: Jean-Baptiste Kempf
directx_va: more custom decoder GUIDs Found via DXVA checker Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8aca92dddb412dd596852e3867911c43a6afeec4 --- modules/codec/avcodec/directx_va.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/codec/avcodec/directx_va.c b/modules/codec/avcodec/directx_va.c index b499cd8e86..4962aa7b5e 100644 --- a/modules/codec/avcodec/directx_va.c +++ b/modules/codec/avcodec/directx_va.c @@ -158,6 +158,7 @@ DEFINE_GUID(DXVA_ModeH263_F, 0x1b81be08, 0xa0c7, 0x11d3, DEFINE_GUID(DXVA_ModeVP8_VLD, 0x90b899ea, 0x3a62, 0x4705, 0x88, 0xb3, 0x8d, 0xf0, 0x4b, 0x27, 0x44, 0xe7); DEFINE_GUID(DXVA_ModeVP9_VLD_Profile0, 0x463707f8, 0xa1d0, 0x4585, 0x87, 0x6d, 0x83, 0xaa, 0x6d, 0x60, 0xb8, 0x9e); DEFINE_GUID(DXVA_ModeVP9_VLD_10bit_Profile2, 0xa4c749ef, 0x6ecf, 0x48aa, 0x84, 0x48, 0x50, 0xa7, 0xa1, 0x16, 0x5f, 0xf7); +DEFINE_GUID(DXVA_ModeVP9_VLD_Intel, 0x76988a52, 0xdf13, 0x419a, 0x8e, 0x64, 0xff, 0xcf, 0x4a, 0x33, 0x6c, 0xf5); typedef struct { const char *name; @@ -261,6 +262,7 @@ static const directx_va_mode_t DXVA_MODES[] = { { "VP9 profile 0", &DXVA_ModeVP9_VLD_Profile0, 0, NULL }, #endif { "VP9 profile 2", &DXVA_ModeVP9_VLD_10bit_Profile2, 0, NULL }, + { "VP9 profile Intel", &DXVA_ModeVP9_VLD_Intel, 0, NULL }, { NULL, NULL, 0, NULL } }; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
