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
0a671deb
Commit
0a671deb
authored
Mar 27, 2010
by
Mikhail Maroukhine
Committed by
Alexandre Julliard
Apr 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Fix compiler warnings with flag -Wcast-qual.
parent
42e897f2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
avidec.c
dlls/quartz/avidec.c
+1
-1
avisplit.c
dlls/quartz/avisplit.c
+2
-2
No files found.
dlls/quartz/avidec.c
View file @
0a671deb
...
...
@@ -203,7 +203,7 @@ static HRESULT AVIDec_ConnectInput(InputPin *pin, const AM_MEDIA_TYPE * pmt)
bmi
=
&
format2
->
bmiHeader
;
else
goto
failed
;
TRACE
(
"Fourcc: %s
\n
"
,
debugstr_an
((
char
*
)
&
pmt
->
subtype
.
Data1
,
4
));
TRACE
(
"Fourcc: %s
\n
"
,
debugstr_an
((
c
onst
c
har
*
)
&
pmt
->
subtype
.
Data1
,
4
));
This
->
hvid
=
ICLocate
(
pmt
->
majortype
.
Data1
,
pmt
->
subtype
.
Data1
,
bmi
,
NULL
,
ICMODE_DECOMPRESS
);
if
(
This
->
hvid
)
...
...
dlls/quartz/avisplit.c
View file @
0a671deb
...
...
@@ -692,7 +692,7 @@ static HRESULT AVISplitter_ProcessStreamList(AVISplitterImpl * This, const BYTE
amt
.
formattype
=
FORMAT_WaveFormatEx
;
break
;
default:
FIXME
(
"fccType %.4s not handled yet
\n
"
,
(
char
*
)
&
pStrHdr
->
fccType
);
FIXME
(
"fccType %.4s not handled yet
\n
"
,
(
c
onst
c
har
*
)
&
pStrHdr
->
fccType
);
amt
.
formattype
=
FORMAT_None
;
}
amt
.
majortype
=
MEDIATYPE_Video
;
...
...
@@ -793,7 +793,7 @@ static HRESULT AVISplitter_ProcessStreamList(AVISplitterImpl * This, const BYTE
TRACE
(
"bIndexSubType: %hd
\n
"
,
pIndex
->
bIndexSubType
);
TRACE
(
"bIndexType: %hd
\n
"
,
pIndex
->
bIndexType
);
TRACE
(
"nEntriesInUse: %u
\n
"
,
pIndex
->
nEntriesInUse
);
TRACE
(
"dwChunkId: %.4s
\n
"
,
(
char
*
)
&
pIndex
->
dwChunkId
);
TRACE
(
"dwChunkId: %.4s
\n
"
,
(
c
onst
c
har
*
)
&
pIndex
->
dwChunkId
);
if
(
pIndex
->
dwReserved
[
0
])
TRACE
(
"dwReserved[0]: %u
\n
"
,
pIndex
->
dwReserved
[
0
]);
if
(
pIndex
->
dwReserved
[
2
])
...
...
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