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
381bd1c0
Commit
381bd1c0
authored
Feb 17, 2010
by
Paul Chitescu
Committed by
Alexandre Julliard
Feb 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qedit: Always print a TRACE when a SampleGrabber pin gets connected.
parent
fb950a6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
samplegrabber.c
dlls/qedit/samplegrabber.c
+3
-2
No files found.
dlls/qedit/samplegrabber.c
View file @
381bd1c0
...
@@ -1022,8 +1022,8 @@ SampleGrabber_Out_IPin_Connect(IPin *iface, IPin *receiver, const AM_MEDIA_TYPE
...
@@ -1022,8 +1022,8 @@ SampleGrabber_Out_IPin_Connect(IPin *iface, IPin *receiver, const AM_MEDIA_TYPE
IMemInputPin_Release
(
This
->
sg
->
memOutput
);
IMemInputPin_Release
(
This
->
sg
->
memOutput
);
This
->
sg
->
memOutput
=
NULL
;
This
->
sg
->
memOutput
=
NULL
;
}
}
if
(
SUCCEEDED
(
IPin_QueryInterface
(
receiver
,
&
IID_IMemInputPin
,(
void
**
)
&
(
This
->
sg
->
memOutput
))))
IPin_QueryInterface
(
receiver
,
&
IID_IMemInputPin
,(
void
**
)
&
(
This
->
sg
->
memOutput
));
TRACE
(
"pair IMemInputPin %p
\n
"
,
This
->
sg
->
memOutput
);
TRACE
(
"(%p) Accepted IPin %p, IMemInputPin %p
\n
"
,
This
,
receiver
,
This
->
sg
->
memOutput
);
return
S_OK
;
return
S_OK
;
}
}
...
@@ -1066,6 +1066,7 @@ SampleGrabber_In_IPin_ReceiveConnection(IPin *iface, IPin *connector, const AM_M
...
@@ -1066,6 +1066,7 @@ SampleGrabber_In_IPin_ReceiveConnection(IPin *iface, IPin *connector, const AM_M
This
->
sg
->
mtype
.
pbFormat
=
NULL
;
This
->
sg
->
mtype
.
pbFormat
=
NULL
;
}
}
This
->
pair
=
connector
;
This
->
pair
=
connector
;
TRACE
(
"(%p) Accepted IPin %p
\n
"
,
This
,
connector
);
return
S_OK
;
return
S_OK
;
}
}
...
...
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