Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
942269fd
Commit
942269fd
authored
Jul 28, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
caf: Use correct printf conversion specifiers for POSIX int types
parent
019a28cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cafdec.c
libavformat/cafdec.c
+1
-1
No files found.
libavformat/cafdec.c
View file @
942269fd
...
@@ -292,7 +292,7 @@ static int read_header(AVFormatContext *s)
...
@@ -292,7 +292,7 @@ static int read_header(AVFormatContext *s)
default:
default:
#define _(x) ((x) >= ' ' ? (x) : ' ')
#define _(x) ((x) >= ' ' ? (x) : ' ')
av_log
(
s
,
AV_LOG_WARNING
,
av_log
(
s
,
AV_LOG_WARNING
,
"skipping CAF chunk: %08"
PRIX32
" (%"
PRIu
8
"%"
PRIu8
"%"
PRIu8
"%"
PRIu8
")
\n
"
,
"skipping CAF chunk: %08"
PRIX32
" (%"
PRIu
32
"%"
PRIu32
"%"
PRIu32
"%"
PRIu32
")
\n
"
,
tag
,
_
(
tag
>>
24
),
_
((
tag
>>
16
)
&
0xFF
),
_
((
tag
>>
8
)
&
0xFF
),
_
(
tag
&
0xFF
));
tag
,
_
(
tag
>>
24
),
_
((
tag
>>
16
)
&
0xFF
),
_
((
tag
>>
8
)
&
0xFF
),
_
(
tag
&
0xFF
));
#undef _
#undef _
case
MKBETAG
(
'f'
,
'r'
,
'e'
,
'e'
):
case
MKBETAG
(
'f'
,
'r'
,
'e'
,
'e'
):
...
...
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