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
0717c961
Commit
0717c961
authored
Mar 05, 2007
by
Chris Robinson
Committed by
Alexandre Julliard
Mar 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Improve reference traces.
parent
b3fb3a67
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
10 deletions
+12
-10
dsoundrender.c
dlls/quartz/dsoundrender.c
+1
-1
enumpins.c
dlls/quartz/enumpins.c
+4
-2
filesource.c
dlls/quartz/filesource.c
+3
-3
filtermapper.c
dlls/quartz/filtermapper.c
+2
-2
parser.c
dlls/quartz/parser.c
+2
-2
No files found.
dlls/quartz/dsoundrender.c
View file @
0717c961
...
...
@@ -394,7 +394,7 @@ static ULONG WINAPI DSoundRender_Release(IBaseFilter * iface)
DSoundRenderImpl
*
This
=
(
DSoundRenderImpl
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(%p
/%p)->() Release from %d
\n
"
,
This
,
iface
,
refCount
+
1
);
TRACE
(
"(%p
)->() Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
...
...
dlls/quartz/enumpins.c
View file @
0717c961
...
...
@@ -47,6 +47,8 @@ HRESULT IEnumPinsImpl_Construct(const ENUMPINDETAILS * pDetails, IEnumPins ** pp
pEnumPins
->
uIndex
=
0
;
CopyMemory
(
&
pEnumPins
->
enumPinDetails
,
pDetails
,
sizeof
(
ENUMPINDETAILS
));
*
ppEnum
=
(
IEnumPins
*
)(
&
pEnumPins
->
lpVtbl
);
TRACE
(
"Created new enumerator (%p)
\n
"
,
*
ppEnum
);
return
S_OK
;
}
...
...
@@ -77,7 +79,7 @@ static ULONG WINAPI IEnumPinsImpl_AddRef(IEnumPins * iface)
IEnumPinsImpl
*
This
=
(
IEnumPinsImpl
*
)
iface
;
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
refCount
);
TRACE
(
"(
)
\n
"
);
TRACE
(
"(
%p)->() AddRef from %d
\n
"
,
This
,
refCount
-
1
);
return
refCount
;
}
...
...
@@ -87,7 +89,7 @@ static ULONG WINAPI IEnumPinsImpl_Release(IEnumPins * iface)
IEnumPinsImpl
*
This
=
(
IEnumPinsImpl
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(
)
\n
"
);
TRACE
(
"(
%p)->() Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
...
...
dlls/quartz/filesource.c
View file @
0717c961
...
...
@@ -362,7 +362,7 @@ static ULONG WINAPI AsyncReader_AddRef(IBaseFilter * iface)
AsyncReader
*
This
=
(
AsyncReader
*
)
iface
;
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
refCount
);
TRACE
(
"(%p
/%p)->() AddRef from %d
\n
"
,
This
,
iface
,
refCount
-
1
);
TRACE
(
"(%p
)->() AddRef from %d
\n
"
,
This
,
refCount
-
1
);
return
refCount
;
}
...
...
@@ -372,7 +372,7 @@ static ULONG WINAPI AsyncReader_Release(IBaseFilter * iface)
AsyncReader
*
This
=
(
AsyncReader
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(%p
/%p)->() Release from %d
\n
"
,
This
,
iface
,
refCount
+
1
);
TRACE
(
"(%p
)->() Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
...
...
@@ -751,7 +751,7 @@ static ULONG WINAPI FileAsyncReaderPin_Release(IPin * iface)
FileAsyncReader
*
This
=
(
FileAsyncReader
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
pin
.
pin
.
refCount
);
TRACE
(
"(
)
\n
"
);
TRACE
(
"(
%p)->() Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
...
...
dlls/quartz/filtermapper.c
View file @
0717c961
...
...
@@ -228,7 +228,7 @@ static ULONG WINAPI FilterMapper2_AddRef(IFilterMapper2 * iface)
FilterMapper2Impl
*
This
=
(
FilterMapper2Impl
*
)
iface
;
ULONG
refCount
=
InterlockedIncrement
(
&
This
->
refCount
);
TRACE
(
"(%p)->()
\n
"
,
iface
);
TRACE
(
"(%p)->()
AddRef from %d
\n
"
,
This
,
refCount
-
1
);
return
refCount
;
}
...
...
@@ -238,7 +238,7 @@ static ULONG WINAPI FilterMapper2_Release(IFilterMapper2 * iface)
FilterMapper2Impl
*
This
=
(
FilterMapper2Impl
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(%p)->()
\n
"
,
iface
);
TRACE
(
"(%p)->()
Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
refCount
==
0
)
{
...
...
dlls/quartz/parser.c
View file @
0717c961
...
...
@@ -179,7 +179,7 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
ParserImpl
*
This
=
(
ParserImpl
*
)
iface
;
ULONG
refCount
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(%p
/%p)->() Release from %d
\n
"
,
This
,
iface
,
refCount
+
1
);
TRACE
(
"(%p
)->() Release from %d
\n
"
,
This
,
refCount
+
1
);
if
(
!
refCount
)
{
...
...
@@ -195,7 +195,7 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
HeapFree
(
GetProcessHeap
(),
0
,
This
->
ppPins
);
This
->
lpVtbl
=
NULL
;
TRACE
(
"Destroying
AVI splitt
er
\n
"
);
TRACE
(
"Destroying
pars
er
\n
"
);
CoTaskMemFree
(
This
);
return
0
;
...
...
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