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
ffmpeg2theora
Commits
15dbe906
Commit
15dbe906
authored
Jun 13, 2009
by
Jan Gerber
Browse files
print duration in float
parent
109e791a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ffmpeg2theora.c
View file @
15dbe906
...
...
@@ -2186,7 +2186,7 @@ int main(int argc, char **argv) {
}
if
(
info
.
frontend
)
{
fprintf
(
info
.
frontend
,
"
\n
f2t ;duration: %
d
;
\n
"
,
(
in
t
)
(
convert
->
context
->
duration
/
AV_TIME_BASE
)
)
;
fprintf
(
info
.
frontend
,
"
\n
f2t ;duration: %
f
;
\n
"
,
(
floa
t
)
convert
->
context
->
duration
/
AV_TIME_BASE
);
fflush
(
info
.
frontend
);
}
...
...
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