Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
110c287f
Commit
110c287f
authored
Mar 30, 2009
by
Joerg-Cyril.Hoehle@t-systems.com
Committed by
Alexandre Julliard
Mar 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Log GUID instead of pointer.
parent
893fc773
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
amstream.c
dlls/amstream/amstream.c
+2
-2
mediastream.c
dlls/amstream/mediastream.c
+2
-2
No files found.
dlls/amstream/amstream.c
View file @
110c287f
...
...
@@ -129,7 +129,7 @@ static HRESULT WINAPI IAMMultiMediaStreamImpl_GetMediaStream(IAMMultiMediaStream
MSPID
PurposeId
;
unsigned
int
i
;
TRACE
(
"(%p/%p)->(%
p,%p)
\n
"
,
This
,
iface
,
idPurpose
,
ppMediaStream
);
TRACE
(
"(%p/%p)->(%
s,%p)
\n
"
,
This
,
iface
,
debugstr_guid
(
idPurpose
)
,
ppMediaStream
);
for
(
i
=
0
;
i
<
This
->
nbStreams
;
i
++
)
{
...
...
@@ -268,7 +268,7 @@ static HRESULT WINAPI IAMMultiMediaStreamImpl_AddMediaStream(IAMMultiMediaStream
IMediaStream
*
pStream
;
IMediaStream
**
pNewStreams
;
FIXME
(
"(%p/%p)->(%p,%
p,%x,%p) partial stub!
\n
"
,
This
,
iface
,
pStreamObject
,
PurposeId
,
dwFlags
,
ppNewStream
);
FIXME
(
"(%p/%p)->(%p,%
s,%x,%p) partial stub!
\n
"
,
This
,
iface
,
pStreamObject
,
debugstr_guid
(
PurposeId
)
,
dwFlags
,
ppNewStream
);
if
(
IsEqualGUID
(
PurposeId
,
&
MSPID_PrimaryVideo
))
hr
=
DirectDrawMediaStream_create
((
IMultiMediaStream
*
)
iface
,
PurposeId
,
This
->
StreamType
,
&
pStream
);
...
...
dlls/amstream/mediastream.c
View file @
110c287f
...
...
@@ -58,7 +58,7 @@ HRESULT MediaStream_create(IMultiMediaStream* Parent, const MSPID* pPurposeId, S
{
IMediaStreamImpl
*
object
;
TRACE
(
"(%p,%
p,%p)
\n
"
,
Parent
,
pPurposeId
,
ppMediaStream
);
TRACE
(
"(%p,%
s,%p)
\n
"
,
Parent
,
debugstr_guid
(
pPurposeId
)
,
ppMediaStream
);
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IMediaStreamImpl
));
if
(
!
object
)
...
...
@@ -198,7 +198,7 @@ HRESULT DirectDrawMediaStream_create(IMultiMediaStream* Parent, const MSPID* pPu
{
IDirectDrawMediaStreamImpl
*
object
;
TRACE
(
"(%p,%
p,%p)
\n
"
,
Parent
,
pPurposeId
,
ppMediaStream
);
TRACE
(
"(%p,%
s,%p)
\n
"
,
Parent
,
debugstr_guid
(
pPurposeId
)
,
ppMediaStream
);
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IMediaStreamImpl
));
if
(
!
object
)
...
...
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