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
43bef66e
Commit
43bef66e
authored
Feb 24, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Add Avi Mux input pin IMemInputPin::NotifyAllocator.
parent
151a3eec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
avimux.c
dlls/qcap/avimux.c
+16
-2
No files found.
dlls/qcap/avimux.c
View file @
43bef66e
...
...
@@ -1362,9 +1362,23 @@ static HRESULT WINAPI AviMuxIn_MemInputPin_NotifyAllocator(
{
AviMuxIn
*
avimuxin
=
AviMuxIn_from_IMemInputPin
(
iface
);
AviMux
*
This
=
impl_from_in_IPin
(
&
avimuxin
->
pin
.
pin
.
IPin_iface
);
FIXME
(
"(%p:%s)->(%p %x)
\n
"
,
This
,
debugstr_w
(
avimuxin
->
pin
.
pin
.
pinInfo
.
achName
),
ALLOCATOR_PROPERTIES
props
;
HRESULT
hr
;
TRACE
(
"(%p:%s)->(%p %x)
\n
"
,
This
,
debugstr_w
(
avimuxin
->
pin
.
pin
.
pinInfo
.
achName
),
pAllocator
,
bReadOnly
);
return
E_NOTIMPL
;
if
(
!
pAllocator
)
return
E_POINTER
;
memset
(
&
props
,
0
,
sizeof
(
props
));
hr
=
IMemAllocator_GetProperties
(
pAllocator
,
&
props
);
if
(
FAILED
(
hr
))
return
hr
;
props
.
cbAlign
=
1
;
props
.
cbPrefix
=
8
;
return
IMemAllocator_SetProperties
(
avimuxin
->
pin
.
pAllocator
,
&
props
,
&
props
);
}
static
HRESULT
WINAPI
AviMuxIn_MemInputPin_GetAllocatorRequirements
(
...
...
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