Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
5eef9832
Commit
5eef9832
authored
Dec 11, 2015
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: Restructure DEBUG ifdefs to avoid unused function parameter warnings
parent
bdbb8c68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
ape.c
libavformat/ape.c
+4
-2
No files found.
libavformat/ape.c
View file @
5eef9832
...
...
@@ -94,9 +94,9 @@ static int ape_probe(AVProbeData * p)
return
0
;
}
#ifdef DEBUG
static
void
ape_dumpinfo
(
AVFormatContext
*
s
,
APEContext
*
ape_ctx
)
{
#ifdef DEBUG
int
i
;
av_log
(
s
,
AV_LOG_DEBUG
,
"Descriptor Block:
\n\n
"
);
...
...
@@ -154,8 +154,10 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
av_log
(
s
,
AV_LOG_DEBUG
,
"junklength = %"
PRIu32
"
\n
"
,
ape_ctx
->
junklength
);
av_log
(
s
,
AV_LOG_DEBUG
,
"firstframe = %"
PRIu32
"
\n
"
,
ape_ctx
->
firstframe
);
av_log
(
s
,
AV_LOG_DEBUG
,
"totalsamples = %"
PRIu32
"
\n
"
,
ape_ctx
->
totalsamples
);
#endif
}
#else
#define ape_dumpinfo(s, ape_ctx) do {} while(0)
#endif
static
int
ape_read_header
(
AVFormatContext
*
s
)
{
...
...
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