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
3a53ea33
Commit
3a53ea33
authored
Dec 12, 2012
by
Andrew Talbot
Committed by
Alexandre Julliard
Dec 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Avoid signed-unsigned integer comparisons.
parent
132ea59a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mediastreamfilter.c
dlls/amstream/mediastreamfilter.c
+3
-3
No files found.
dlls/amstream/mediastreamfilter.c
View file @
3a53ea33
...
...
@@ -78,7 +78,7 @@ static HRESULT WINAPI BasePinImpl_CheckMediaType(BasePin *This, const AM_MEDIA_T
{
IMediaStreamFilterImpl
*
filter
=
impl_from_IMediaStreamFilter
((
IMediaStreamFilter
*
)
This
->
pinInfo
.
pFilter
);
MSPID
purpose_id
;
int
i
;
ULONG
i
;
TRACE
(
"Checking media type %s - %s
\n
"
,
debugstr_guid
(
&
pmt
->
majortype
),
debugstr_guid
(
&
pmt
->
subtype
));
...
...
@@ -130,7 +130,7 @@ static HRESULT WINAPI BasePinImp_GetMediaType(BasePin *This, int index, AM_MEDIA
{
IMediaStreamFilterImpl
*
filter
=
(
IMediaStreamFilterImpl
*
)
This
->
pinInfo
.
pFilter
;
MSPID
purpose_id
;
int
i
;
ULONG
i
;
/* FIXME: Reset structure as we only fill majortype and minortype for now */
ZeroMemory
(
amt
,
sizeof
(
*
amt
));
...
...
@@ -245,7 +245,7 @@ static ULONG WINAPI MediaStreamFilterImpl_Release(IMediaStreamFilter *iface)
if
(
!
ref
)
{
int
i
;
ULONG
i
;
for
(
i
=
0
;
i
<
This
->
nb_streams
;
i
++
)
{
IMediaStream_Release
(
This
->
streams
[
i
]);
...
...
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