Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
86e1aff3
Commit
86e1aff3
authored
Mar 16, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmo: fix format string
parent
c88d0de6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/codec/dmo/dmo.c
modules/codec/dmo/dmo.c
+8
-2
No files found.
modules/codec/dmo/dmo.c
View file @
86e1aff3
...
...
@@ -46,6 +46,12 @@
# define DMO_DEBUG 1
#endif
#ifdef UNICODE
# define PRIs "%ls"
#else
# define PRIs "%s"
#endif
typedef
long
(
STDCALL
*
GETCLASS
)
(
const
GUID
*
,
const
GUID
*
,
void
**
);
static
const
int
pi_channels_maps
[
7
]
=
...
...
@@ -249,7 +255,7 @@ static int DecoderOpen( vlc_object_t *p_this )
{
if
(
decoders_table
[
i
].
i_fourcc
==
p_dec
->
fmt_in
.
i_codec
)
{
msg_Dbg
(
p_dec
,
"DMO codec for %4.4s may work with dll=
%s"
,
msg_Dbg
(
p_dec
,
"DMO codec for %4.4s may work with dll=
"
PRIs
,
(
char
*
)
&
p_dec
->
fmt_in
.
i_codec
,
decoders_table
[
i
].
psz_dll
);
goto
found
;
...
...
@@ -765,7 +771,7 @@ loader:
*
p_hmsdmo_dll
=
LoadLibrary
(
codecs_table
[
i_codec
].
psz_dll
);
if
(
*
p_hmsdmo_dll
==
NULL
)
{
msg_Dbg
(
p_this
,
"failed loading '
%s
'"
,
msg_Dbg
(
p_this
,
"failed loading '
"
PRIs
"
'"
,
codecs_table
[
i_codec
].
psz_dll
);
return
VLC_EGENERIC
;
}
...
...
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