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
fae39cf5
Commit
fae39cf5
authored
Sep 26, 2023
by
Alfred Agrell
Committed by
Alexandre Julliard
Nov 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Implement IAMStreamSelect::Count in CLSID_MPEG1Splitter.
parent
7bcb6bc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
quartz_parser.c
dlls/winegstreamer/quartz_parser.c
+9
-2
No files found.
dlls/winegstreamer/quartz_parser.c
View file @
fae39cf5
...
...
@@ -1511,8 +1511,15 @@ static ULONG WINAPI stream_select_Release(IAMStreamSelect *iface)
static
HRESULT
WINAPI
stream_select_Count
(
IAMStreamSelect
*
iface
,
DWORD
*
count
)
{
FIXME
(
"iface %p, count %p, stub!
\n
"
,
iface
,
count
);
return
E_NOTIMPL
;
struct
parser
*
filter
=
impl_from_IAMStreamSelect
(
iface
);
TRACE
(
"filter %p, count %p
\n
"
,
filter
,
count
);
EnterCriticalSection
(
&
filter
->
filter
.
filter_cs
);
if
(
filter
->
sink
.
pin
.
peer
)
*
count
=
wg_parser_get_stream_count
(
filter
->
wg_parser
);
else
*
count
=
0
;
LeaveCriticalSection
(
&
filter
->
filter
.
filter_cs
);
return
S_OK
;
}
static
HRESULT
WINAPI
stream_select_Info
(
IAMStreamSelect
*
iface
,
LONG
index
,
...
...
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