Skip to content

Commit 3c1ea65

Browse files
committed
.
1 parent c6c56f6 commit 3c1ea65

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

include/moreuuids.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* (C) 2003-2006 Gabest
3-
* (C) 2006-2017 see Authors.txt
3+
* (C) 2006-2026 see Authors.txt
44
*
55
* This file is part of MPC-HC.
66
*
@@ -994,6 +994,8 @@ DEFINE_GUID(MEDIASUBTYPE_WEBP, MAKEFOURCC('W', 'E', 'B', 'P'), 0x0000, 0x0010, 0
994994

995995
DEFINE_GUID(MEDIASUBTYPE_FSV1, 0x31565346, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
996996

997+
DEFINE_GUID(MEDIASUBTYPE_FSV2, 0x32565346, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
998+
997999
DEFINE_GUID(MEDIASUBTYPE_CRAM, MAKEFOURCC('C', 'R', 'A', 'M'), 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B,
9981000
0x71);
9991001

@@ -1301,6 +1303,12 @@ DEFINE_GUID(MEDIASUBTYPE_SP54, 0x34355053, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xA
13011303
// 3156474B-0000-0010-8000-00AA00389B71
13021304
DEFINE_GUID(MEDIASUBTYPE_KGV1, 0x3156474B, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
13031305

1306+
// 43565543-0000-0010-8000-00AA00389B71
1307+
DEFINE_GUID(MEDIASUBTYPE_CUVC, 0x43565543, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
1308+
1309+
// 636C636E-0000-0010-8000-00AA00389B71
1310+
DEFINE_GUID(MEDIASUBTYPE_NCLC, 0x636C636E, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71);
1311+
13041312
// Audio codecs
13051313

13061314
// 41564D41-0000-0010-8000-00AA00389B71

src/mpc-hc/FGManager.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2303,6 +2303,10 @@ void CFGManagerCustom::InsertLAVVideo(bool IsPreview)
23032303
pFGF = IsPreview || tra[TRA_OTHERVIDEO] ? pFGLAVVideo : pFGLAVVideoLM;
23042304
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_CFHD);
23052305
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_APV1);
2306+
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_CUVC);
2307+
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_NCLC);
2308+
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_FSV1);
2309+
pFGF->AddType(MEDIATYPE_Video, MEDIASUBTYPE_FSV2);
23062310
#endif
23072311

23082312
// Add LAV Video if needed

0 commit comments

Comments
 (0)