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
e3b339cc
Commit
e3b339cc
authored
Jun 14, 2018
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/aviobuf: Increase Statistics verbosity to AV_LOG_VERBOSE.
parent
8bd514d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
aviobuf.c
libavformat/aviobuf.c
+2
-2
No files found.
libavformat/aviobuf.c
View file @
e3b339cc
...
...
@@ -1202,9 +1202,9 @@ int avio_close(AVIOContext *s)
av_freep
(
&
s
->
opaque
);
av_freep
(
&
s
->
buffer
);
if
(
s
->
write_flag
)
av_log
(
s
,
AV_LOG_
DEBUG
,
"Statistics: %d seeks, %d writeouts
\n
"
,
s
->
seek_count
,
s
->
writeout_count
);
av_log
(
s
,
AV_LOG_
VERBOSE
,
"Statistics: %d seeks, %d writeouts
\n
"
,
s
->
seek_count
,
s
->
writeout_count
);
else
av_log
(
s
,
AV_LOG_
DEBUG
,
"Statistics: %"
PRId64
" bytes read, %d seeks
\n
"
,
s
->
bytes_read
,
s
->
seek_count
);
av_log
(
s
,
AV_LOG_
VERBOSE
,
"Statistics: %"
PRId64
" bytes read, %d seeks
\n
"
,
s
->
bytes_read
,
s
->
seek_count
);
av_opt_free
(
s
);
avio_context_free
(
&
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