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
9af8179c
Commit
9af8179c
authored
Mar 03, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: fix -stats -v 0
Fixes Ticket1687 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
f2cb9931
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
ffmpeg.c
ffmpeg.c
+4
-1
ffmpeg_opt.c
ffmpeg_opt.c
+1
-1
No files found.
ffmpeg.c
View file @
9af8179c
...
...
@@ -1269,7 +1269,10 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
av_bprintf
(
&
buf_script
,
"drop_frames=%d
\n
"
,
nb_frames_drop
);
if
(
print_stats
||
is_last_report
)
{
av_log
(
NULL
,
AV_LOG_INFO
,
"%s
\r
"
,
buf
);
if
(
print_stats
==
1
&&
AV_LOG_INFO
>
av_log_get_level
())
{
fprintf
(
stderr
,
"%s
\r
"
,
buf
);
}
else
av_log
(
NULL
,
AV_LOG_INFO
,
"%s
\r
"
,
buf
);
fflush
(
stderr
);
}
...
...
ffmpeg_opt.c
View file @
9af8179c
...
...
@@ -81,7 +81,7 @@ int copy_ts = 0;
int
copy_tb
=
-
1
;
int
debug_ts
=
0
;
int
exit_on_error
=
0
;
int
print_stats
=
1
;
int
print_stats
=
-
1
;
int
qp_hist
=
0
;
int
stdin_interaction
=
1
;
int
frame_bits_per_raw_sample
=
0
;
...
...
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