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
486f89b9
Commit
486f89b9
authored
Apr 22, 2024
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Apr 25, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Reject unexpected formats on init.
parent
953af3af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
mpegsplit.c
dlls/quartz/tests/mpegsplit.c
+1
-1
quartz_parser.c
dlls/winegstreamer/quartz_parser.c
+5
-1
No files found.
dlls/quartz/tests/mpegsplit.c
View file @
486f89b9
...
...
@@ -2152,7 +2152,7 @@ static void test_no_acceptable_type(void)
ok
(
hr
==
S_OK
,
"Got hr %#lx.
\n
"
,
hr
);
hr
=
IFilterGraph2_ConnectDirect
(
graph
,
source
,
sink
,
NULL
);
todo_wine
ok
(
hr
==
VFW_E_NO_ACCEPTABLE_TYPES
,
"Got hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
VFW_E_NO_ACCEPTABLE_TYPES
,
"Got hr %#lx.
\n
"
,
hr
);
IPin_Release
(
source
);
IPin_Release
(
sink
);
...
...
dlls/winegstreamer/quartz_parser.c
View file @
486f89b9
...
...
@@ -2387,7 +2387,11 @@ static BOOL mpeg_splitter_filter_init_gst(struct parser *filter)
if
(
!
create_pin
(
filter
,
wg_parser_get_stream
(
parser
,
i
),
L"Audio"
))
return
FALSE
;
}
else
FIXME
(
"unexpected format %u
\n
"
,
fmt
.
major_type
);
else
{
TRACE
(
"unexpected format %u
\n
"
,
fmt
.
major_type
);
return
FALSE
;
}
}
return
TRUE
;
...
...
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