Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
efb2f927
Commit
efb2f927
authored
Nov 20, 2012
by
John Koleszar
Committed by
Gerrit Code Review
Nov 20, 2012
Browse files
Merge "vpxenc: don't print STATS_PKT size w/--quiet"
parents
9cc6f078
6475224e
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
efb2f927
...
...
@@ -2284,8 +2284,9 @@ static void get_cx_data(struct stream_state *stream,
break
;
case
VPX_CODEC_STATS_PKT
:
stream
->
frames_out
++
;
fprintf
(
stderr
,
" %6luS"
,
(
unsigned
long
)
pkt
->
data
.
twopass_stats
.
sz
);
if
(
!
global
->
quiet
)
fprintf
(
stderr
,
" %6luS"
,
(
unsigned
long
)
pkt
->
data
.
twopass_stats
.
sz
);
stats_write
(
&
stream
->
stats
,
pkt
->
data
.
twopass_stats
.
buf
,
pkt
->
data
.
twopass_stats
.
sz
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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