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
b48fc2c2
Commit
b48fc2c2
authored
Apr 03, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Aug 01, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Use the correct name for WMADecMediaObject DMO.
parent
6d64e407
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
mf.c
dlls/mf/tests/mf.c
+0
-1
main.c
dlls/winegstreamer/main.c
+1
-1
No files found.
dlls/mf/tests/mf.c
View file @
b48fc2c2
...
...
@@ -125,7 +125,6 @@ static void check_dmo(const GUID *class_id, const WCHAR *expect_name, const GUID
hr
=
DMOGetName
(
class_id
,
name
);
ok
(
hr
==
S_OK
,
"DMOGetName returned %#lx
\n
"
,
hr
);
todo_wine_if
(
!
wcscmp
(
expect_name
,
L"WMAudio Decoder DMO"
))
ok
(
!
wcscmp
(
name
,
expect_name
),
"got name %s
\n
"
,
debugstr_w
(
name
));
hr
=
DMOGetTypes
(
class_id
,
ARRAY_SIZE
(
input
),
&
input_count
,
input
,
...
...
dlls/winegstreamer/main.c
View file @
b48fc2c2
...
...
@@ -759,7 +759,7 @@ HRESULT WINAPI DllRegisterServer(void)
IFilterMapper2_Release
(
mapper
);
if
(
FAILED
(
hr
=
DMORegister
(
L"WMA Decoder DMO"
,
&
CLSID_WMADecMediaObject
,
&
DMOCATEGORY_AUDIO_DECODER
,
if
(
FAILED
(
hr
=
DMORegister
(
L"WMA
udio
Decoder DMO"
,
&
CLSID_WMADecMediaObject
,
&
DMOCATEGORY_AUDIO_DECODER
,
0
,
ARRAY_SIZE
(
wma_decoder_input
),
wma_decoder_input
,
ARRAY_SIZE
(
wma_decoder_output
),
wma_decoder_output
)))
return
hr
;
if
(
FAILED
(
hr
=
DMORegister
(
L"Resampler DMO"
,
&
CLSID_CResamplerMediaObject
,
&
DMOCATEGORY_AUDIO_EFFECT
,
...
...
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