Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
028ad9b8
Commit
028ad9b8
authored
Aug 06, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Aug 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Simplify error handling in GetClassMediaFile().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
66d40aab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
89 additions
and
111 deletions
+89
-111
filesource.c
dlls/quartz/filesource.c
+84
-105
filtergraph.c
dlls/quartz/filtergraph.c
+4
-5
quartz_private.h
dlls/quartz/quartz_private.h
+1
-1
No files found.
dlls/quartz/filesource.c
View file @
028ad9b8
...
...
@@ -219,25 +219,17 @@ static HRESULT process_pattern_string(LPCWSTR wszPatternString, IAsyncReader * p
return
hr
;
}
HRESULT
GetClassMediaFile
(
IAsyncReader
*
pReader
,
LPCOLESTR
pszFileName
,
GUID
*
majorType
,
GUID
*
minorType
,
GUID
*
sourceFilter
)
BOOL
get_media_type
(
IAsyncReader
*
reader
,
const
WCHAR
*
filename
,
GUID
*
majortype
,
GUID
*
subtype
,
GUID
*
source_clsid
)
{
HKEY
hkeyMediaType
=
NULL
;
LONG
lRet
;
HRESULT
hr
=
S_OK
;
BOOL
bFound
=
FALSE
;
static
const
WCHAR
wszMediaType
[]
=
{
'M'
,
'e'
,
'd'
,
'i'
,
'a'
,
' '
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
WCHAR
extensions_path
[
278
]
=
{
'M'
,
'e'
,
'd'
,
'i'
,
'a'
,
' '
,
'T'
,
'y'
,
'p'
,
'e'
,
'\\'
,
'E'
,
'x'
,
't'
,
'e'
,
'n'
,
's'
,
'i'
,
'o'
,
'n'
,
's'
,
'\\'
,
0
};
static
const
WCHAR
wszExtensions
[]
=
{
'E'
,
'x'
,
't'
,
'e'
,
'n'
,
's'
,
'i'
,
'o'
,
'n'
,
's'
,
0
};
static
const
WCHAR
wszMediaType
[]
=
{
'M'
,
'e'
,
'd'
,
'i'
,
'a'
,
' '
,
'T'
,
'y'
,
'p'
,
'e'
,
0
};
DWORD
majortype_idx
,
size
;
const
WCHAR
*
ext
;
DWORD
size
;
if
(
majorType
)
*
majorType
=
GUID_NULL
;
if
(
minorType
)
*
minorType
=
GUID_NULL
;
if
(
sourceFilter
)
*
sourceFilter
=
GUID_NULL
;
HKEY
parent_key
;
if
((
ext
=
wcsrchr
(
pszFileN
ame
,
'.'
)))
if
((
ext
=
wcsrchr
(
filen
ame
,
'.'
)))
{
WCHAR
guidstr
[
39
];
HKEY
key
;
...
...
@@ -246,112 +238,104 @@ HRESULT GetClassMediaFile(IAsyncReader * pReader, LPCOLESTR pszFileName, GUID *
if
(
!
RegOpenKeyExW
(
HKEY_CLASSES_ROOT
,
extensions_path
,
0
,
KEY_READ
,
&
key
))
{
size
=
sizeof
(
guidstr
);
if
(
major
T
ype
&&
!
RegQueryValueExW
(
key
,
mediatype_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
major
T
ype
);
if
(
major
t
ype
&&
!
RegQueryValueExW
(
key
,
mediatype_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
major
t
ype
);
size
=
sizeof
(
guidstr
);
if
(
minorT
ype
&&
!
RegQueryValueExW
(
key
,
subtype_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
minorT
ype
);
if
(
subt
ype
&&
!
RegQueryValueExW
(
key
,
subtype_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
subt
ype
);
size
=
sizeof
(
guidstr
);
if
(
source
Filter
&&
!
RegQueryValueExW
(
key
,
source_filter_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
source
Filter
);
if
(
source
_clsid
&&
!
RegQueryValueExW
(
key
,
source_filter_name
,
NULL
,
NULL
,
(
BYTE
*
)
guidstr
,
&
size
))
CLSIDFromString
(
guidstr
,
source
_clsid
);
RegCloseKey
(
key
);
return
S_OK
;
return
FALSE
;
}
}
lRet
=
RegOpenKeyExW
(
HKEY_CLASSES_ROOT
,
wszMediaType
,
0
,
KEY_READ
,
&
hkeyMediaType
);
hr
=
HRESULT_FROM_WIN32
(
lRet
)
;
if
(
!
reader
)
return
FALSE
;
if
(
SUCCEEDED
(
hr
))
if
(
RegOpenKeyExW
(
HKEY_CLASSES_ROOT
,
wszMediaType
,
0
,
KEY_READ
,
&
parent_key
))
return
FALSE
;
for
(
majortype_idx
=
0
;
;
++
majortype_idx
)
{
DWORD
indexMajor
;
WCHAR
majortype_str
[
39
];
HKEY
majortype_key
;
DWORD
subtype_idx
;
size
=
ARRAY_SIZE
(
majortype_str
);
if
(
RegEnumKeyExW
(
parent_key
,
majortype_idx
,
majortype_str
,
&
size
,
NULL
,
NULL
,
NULL
,
NULL
))
break
;
for
(
indexMajor
=
0
;
!
bFound
;
indexMajor
++
)
if
(
!
wcscmp
(
majortype_str
,
wszExtensions
))
continue
;
if
(
RegOpenKeyExW
(
parent_key
,
majortype_str
,
0
,
KEY_READ
,
&
majortype_key
))
continue
;
for
(
subtype_idx
=
0
;
;
++
subtype_idx
)
{
HKEY
hkeyMajor
;
WCHAR
wszMajorKeyName
[
CHARS_IN_GUID
];
DWORD
dwKeyNameLength
=
ARRAY_SIZE
(
wszMajorKeyName
);
static
const
WCHAR
wszExtensions
[]
=
{
'E'
,
'x'
,
't'
,
'e'
,
'n'
,
's'
,
'i'
,
'o'
,
'n'
,
's'
,
0
};
WCHAR
subtype_str
[
39
],
*
pattern
;
DWORD
value_idx
,
max_size
;
HKEY
subtype_key
;
if
(
RegEnumKeyExW
(
hkeyMediaType
,
indexMajor
,
wszMajorKeyName
,
&
dwKeyNameLength
,
NULL
,
NULL
,
NULL
,
NULL
)
!=
ERROR_SUCCESS
)
break
;
if
(
RegOpenKeyExW
(
hkeyMediaType
,
wszMajorKeyName
,
0
,
KEY_READ
,
&
hkeyMajor
)
!=
ERROR_SUCCESS
)
size
=
ARRAY_SIZE
(
subtype_str
);
if
(
RegEnumKeyExW
(
majortype_key
,
subtype_idx
,
subtype_str
,
&
size
,
NULL
,
NULL
,
NULL
,
NULL
))
break
;
if
(
wcscmp
(
wszExtensions
,
wszMajorKeyName
)
&&
pReader
)
{
DWORD
indexMinor
;
for
(
indexMinor
=
0
;
!
bFound
;
indexMinor
++
)
{
HKEY
hkeyMinor
;
WCHAR
wszMinorKeyName
[
CHARS_IN_GUID
];
DWORD
dwMinorKeyNameLen
=
ARRAY_SIZE
(
wszMinorKeyName
);
WCHAR
wszSourceFilterKeyName
[
CHARS_IN_GUID
];
DWORD
dwSourceFilterKeyNameLen
=
sizeof
(
wszSourceFilterKeyName
);
DWORD
maxValueLen
;
DWORD
indexValue
;
if
(
RegEnumKeyExW
(
hkeyMajor
,
indexMinor
,
wszMinorKeyName
,
&
dwMinorKeyNameLen
,
NULL
,
NULL
,
NULL
,
NULL
)
!=
ERROR_SUCCESS
)
break
;
if
(
RegOpenKeyExW
(
hkeyMajor
,
wszMinorKeyName
,
0
,
KEY_READ
,
&
hkeyMinor
)
!=
ERROR_SUCCESS
)
break
;
if
(
RegOpenKeyExW
(
majortype_key
,
subtype_str
,
0
,
KEY_READ
,
&
subtype_key
)
)
continue
;
if
(
RegQueryInfoKeyW
(
hkeyMinor
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
&
maxValueLen
,
NULL
,
NULL
)
!=
ERROR_SUCCESS
)
break
;
if
(
RegQueryInfoKeyW
(
subtype_key
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
&
max_size
,
NULL
,
NULL
))
continue
;
pattern
=
heap_alloc
(
max_size
);
for
(
value_idx
=
0
;
;
++
value_idx
)
{
/* The longest name we should encounter is "Source Filter". */
WCHAR
value_name
[
14
],
source_clsid_str
[
39
];
DWORD
value_len
=
ARRAY_SIZE
(
value_name
);
size
=
max_size
;
if
(
RegEnumValueW
(
subtype_key
,
value_idx
,
value_name
,
&
value_len
,
NULL
,
NULL
,
(
BYTE
*
)
pattern
,
&
max_size
))
break
;
for
(
indexValue
=
0
;
!
bFound
;
indexValue
++
)
{
DWORD
dwType
;
WCHAR
wszValueName
[
14
];
/* longest name we should encounter will be "Source Filter" */
LPWSTR
wszPatternString
=
HeapAlloc
(
GetProcessHeap
(),
0
,
maxValueLen
);
DWORD
dwValueNameLen
=
ARRAY_SIZE
(
wszValueName
);
DWORD
dwDataLen
=
maxValueLen
;
/* remember this is in bytes */
if
(
RegEnumValueW
(
hkeyMinor
,
indexValue
,
wszValueName
,
&
dwValueNameLen
,
NULL
,
&
dwType
,
(
LPBYTE
)
wszPatternString
,
&
dwDataLen
)
!=
ERROR_SUCCESS
)
{
HeapFree
(
GetProcessHeap
(),
0
,
wszPatternString
);
break
;
}
if
(
wcscmp
(
wszValueName
,
source_filter_name
)
==
0
)
{
HeapFree
(
GetProcessHeap
(),
0
,
wszPatternString
);
continue
;
}
/* if it is not the source filter value */
if
(
process_pattern_string
(
wszPatternString
,
pReader
)
==
S_OK
)
{
HeapFree
(
GetProcessHeap
(),
0
,
wszPatternString
);
if
(
majorType
&&
FAILED
(
CLSIDFromString
(
wszMajorKeyName
,
majorType
)))
break
;
if
(
minorType
&&
FAILED
(
CLSIDFromString
(
wszMinorKeyName
,
minorType
)))
break
;
if
(
sourceFilter
)
{
/* Look up the source filter key */
if
(
RegQueryValueExW
(
hkeyMinor
,
source_filter_name
,
NULL
,
NULL
,
(
LPBYTE
)
wszSourceFilterKeyName
,
&
dwSourceFilterKeyNameLen
))
break
;
if
(
FAILED
(
CLSIDFromString
(
wszSourceFilterKeyName
,
sourceFilter
)))
break
;
}
bFound
=
TRUE
;
}
else
HeapFree
(
GetProcessHeap
(),
0
,
wszPatternString
);
}
CloseHandle
(
hkeyMinor
);
}
if
(
!
wcscmp
(
value_name
,
source_filter_name
))
continue
;
if
(
process_pattern_string
(
pattern
,
reader
)
!=
S_OK
)
continue
;
if
(
majortype
)
CLSIDFromString
(
majortype_str
,
majortype
);
if
(
subtype
)
CLSIDFromString
(
subtype_str
,
subtype
);
size
=
sizeof
(
source_clsid_str
);
if
(
source_clsid
&&
!
RegQueryValueExW
(
subtype_key
,
source_filter_name
,
NULL
,
NULL
,
(
BYTE
*
)
source_clsid_str
,
&
size
))
CLSIDFromString
(
source_clsid_str
,
source_clsid
);
heap_free
(
pattern
);
RegCloseKey
(
subtype_key
);
RegCloseKey
(
majortype_key
);
RegCloseKey
(
parent_key
);
return
TRUE
;
}
CloseHandle
(
hkeyMajor
);
heap_free
(
pattern
);
RegCloseKey
(
subtype_key
);
}
RegCloseKey
(
majortype_key
);
}
CloseHandle
(
hkeyMediaType
);
if
(
hr
==
S_OK
&&
!
bFound
)
hr
=
E_FAIL
;
return
hr
;
RegCloseKey
(
parent_key
)
;
return
FALSE
;
}
static
IPin
*
async_reader_get_pin
(
BaseFilter
*
iface
,
unsigned
int
index
)
...
...
@@ -529,16 +513,11 @@ static HRESULT WINAPI FileSource_Load(IFileSourceFilter * iface, LPCOLESTR pszFi
if
(
!
pmt
)
{
CopyMediaType
(
This
->
pmt
,
&
default_mt
);
if
(
SUCCEEDED
(
GetClassMediaFile
(
&
This
->
IAsyncReader_iface
,
pszFileName
,
&
This
->
pmt
->
majortype
,
&
This
->
pmt
->
subtype
,
NULL
)
))
if
(
get_media_type
(
&
This
->
IAsyncReader_iface
,
pszFileName
,
&
This
->
pmt
->
majortype
,
&
This
->
pmt
->
subtype
,
NULL
))
{
TRACE
(
"Found major type %s, subtype %s.
\n
"
,
debugstr_guid
(
&
This
->
pmt
->
majortype
),
debugstr_guid
(
&
This
->
pmt
->
subtype
));
}
else
{
This
->
pmt
->
majortype
=
MEDIATYPE_Stream
;
This
->
pmt
->
subtype
=
MEDIASUBTYPE_NULL
;
}
}
else
CopyMediaType
(
This
->
pmt
,
pmt
);
...
...
dlls/quartz/filtergraph.c
View file @
028ad9b8
...
...
@@ -1691,11 +1691,10 @@ static HRESULT GetFileSourceFilter(LPCOLESTR pszFileName, IBaseFilter **filter)
IFileSourceFilter
*
pSource
=
NULL
;
IPin
*
pOutputPin
=
NULL
;
static
const
WCHAR
wszOutputPinName
[]
=
{
'O'
,
'u'
,
't'
,
'p'
,
'u'
,
't'
,
0
};
BOOL
ret
;
/* Try to find a match without reading the file first */
hr
=
GetClassMediaFile
(
NULL
,
pszFileName
,
NULL
,
NULL
,
&
clsid
);
if
(
hr
==
S_OK
)
if
(
get_media_type
(
NULL
,
pszFileName
,
NULL
,
NULL
,
&
clsid
))
return
CreateFilterInstanceAndLoadFile
(
&
clsid
,
pszFileName
,
filter
);
/* Now create a AyncReader instance, to check for signature bytes in the file */
...
...
@@ -1734,10 +1733,10 @@ static HRESULT GetFileSourceFilter(LPCOLESTR pszFileName, IBaseFilter **filter)
}
/* Try again find a match */
hr
=
GetClassMediaFil
e
(
pReader
,
pszFileName
,
NULL
,
NULL
,
&
clsid
);
ret
=
get_media_typ
e
(
pReader
,
pszFileName
,
NULL
,
NULL
,
&
clsid
);
IAsyncReader_Release
(
pReader
);
if
(
hr
==
S_OK
)
if
(
ret
)
{
TRACE
(
"Found source filter %s.
\n
"
,
debugstr_guid
(
&
clsid
));
/* Release the AsyncReader filter and create the matching one */
...
...
dlls/quartz/quartz_private.h
View file @
028ad9b8
...
...
@@ -77,6 +77,6 @@ extern void video_unregister_windowclass(void) DECLSPEC_HIDDEN;
BOOL
CompareMediaTypes
(
const
AM_MEDIA_TYPE
*
pmt1
,
const
AM_MEDIA_TYPE
*
pmt2
,
BOOL
bWildcards
);
void
dump_AM_MEDIA_TYPE
(
const
AM_MEDIA_TYPE
*
pmt
)
DECLSPEC_HIDDEN
;
HRESULT
GetClassMediaFile
(
IAsyncReader
*
pReader
,
LPCOLESTR
pszFileName
,
GUID
*
majorType
,
GUID
*
minorType
,
GUID
*
sourceFilter
)
;
BOOL
get_media_type
(
IAsyncReader
*
reader
,
const
WCHAR
*
filename
,
GUID
*
majortype
,
GUID
*
subtype
,
GUID
*
source_clsid
)
DECLSPEC_HIDDEN
;
#endif
/* __QUARTZ_PRIVATE_INCLUDED__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment