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
72ed451b
Commit
72ed451b
authored
Oct 06, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3.acm: Win64 printf format warning fixes.
parent
5ecdbb1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/winemp3.acm/Makefile.in
+0
-1
mpegl3.c
dlls/winemp3.acm/mpegl3.c
+6
-6
No files found.
dlls/winemp3.acm/Makefile.in
View file @
72ed451b
...
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
winemp3.acm
IMPORTS
=
winmm user32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
common.c
\
...
...
dlls/winemp3.acm/mpegl3.c
View file @
72ed451b
...
...
@@ -181,7 +181,7 @@ static void mp3_horse(PACMDRVSTREAMINSTANCE adsi,
*
ndst
=
dpos
;
buffered_after
=
get_num_buffered_bytes
(
&
amd
->
mp
);
TRACE
(
"before %
ld put %ld during %ld after %l
d
\n
"
,
buffered_before
,
*
nsrc
,
buffered_during
,
buffered_after
);
TRACE
(
"before %
d put %d during %d after %
d
\n
"
,
buffered_before
,
*
nsrc
,
buffered_during
,
buffered_after
);
}
/***********************************************************************
...
...
@@ -243,7 +243,7 @@ static LRESULT MPEG3_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
}
break
;
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
dwQuery
);
WARN
(
"Unsupported query %08x
\n
"
,
dwQuery
);
return
MMSYSERR_NOTSUPPORTED
;
}
...
...
@@ -320,12 +320,12 @@ static LRESULT MPEG3_FormatDetails(PACMFORMATDETAILSW afd, DWORD dwQuery)
fill_in_wfx
(
afd
->
cbwfx
,
afd
->
pwfx
,
192000
);
break
;
default:
WARN
(
"Unsupported tag %08l
x
\n
"
,
afd
->
dwFormatTag
);
WARN
(
"Unsupported tag %08
x
\n
"
,
afd
->
dwFormatTag
);
return
MMSYSERR_INVALPARAM
;
}
break
;
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
dwQuery
);
WARN
(
"Unsupported query %08x
\n
"
,
dwQuery
);
return
MMSYSERR_NOTSUPPORTED
;
}
afd
->
fdwSupport
=
ACMDRIVERDETAILS_SUPPORTF_CODEC
;
...
...
@@ -518,7 +518,7 @@ static LRESULT MPEG3_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE ad
}
break
;
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
adss
->
fdwSize
);
WARN
(
"Unsupported query %08x
\n
"
,
adss
->
fdwSize
);
return
MMSYSERR_NOTSUPPORTED
;
}
return
MMSYSERR_NOERROR
;
...
...
@@ -539,7 +539,7 @@ static LRESULT MPEG3_StreamConvert(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMHEAD
ACM_STREAMCONVERTF_END
|
ACM_STREAMCONVERTF_START
))
{
FIXME
(
"Unsupported fdwConvert (%08
l
x), ignoring it
\n
"
,
adsh
->
fdwConvert
);
FIXME
(
"Unsupported fdwConvert (%08x), ignoring it
\n
"
,
adsh
->
fdwConvert
);
}
/* ACM_STREAMCONVERTF_BLOCKALIGN
* currently all conversions are block aligned, so do nothing for this flag
...
...
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