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
9cf8c3e6
Commit
9cf8c3e6
authored
Jan 19, 2016
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: Show more information for loglevel verbose.
Requested by Andy E, fixes bug 687.
parent
e816fe74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
apedec.c
libavcodec/apedec.c
+1
-1
ape.c
libavformat/ape.c
+1
-1
No files found.
libavcodec/apedec.c
View file @
9cf8c3e6
...
...
@@ -247,7 +247,7 @@ static av_cold int ape_decode_init(AVCodecContext *avctx)
s
->
compression_level
=
AV_RL16
(
avctx
->
extradata
+
2
);
s
->
flags
=
AV_RL16
(
avctx
->
extradata
+
4
);
av_log
(
avctx
,
AV_LOG_
DEBUG
,
"Compression Level: %d - Flags: %d
\n
"
,
av_log
(
avctx
,
AV_LOG_
VERBOSE
,
"Compression Level: %d - Flags: %d
\n
"
,
s
->
compression_level
,
s
->
flags
);
if
(
s
->
compression_level
%
1000
||
s
->
compression_level
>
COMPRESSION_LEVEL_INSANE
||
!
s
->
compression_level
||
...
...
libavformat/ape.c
View file @
9cf8c3e6
...
...
@@ -337,7 +337,7 @@ static int ape_read_header(AVFormatContext * s)
ape_dumpinfo
(
s
,
ape
);
av_log
(
s
,
AV_LOG_
DEBUG
,
"Decoding file - v%d.%02d, compression level %"
PRIu16
"
\n
"
,
av_log
(
s
,
AV_LOG_
VERBOSE
,
"Decoding file - v%d.%02d, compression level %"
PRIu16
"
\n
"
,
ape
->
fileversion
/
1000
,
(
ape
->
fileversion
%
1000
)
/
10
,
ape
->
compressiontype
);
...
...
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