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
750382d5
Commit
750382d5
authored
Dec 22, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: remove annoying logs and improve reporting in case of unavailable bitrate
parent
b3f3fe3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
13 deletions
+11
-13
ffmpeg.c
ffmpeg.c
+11
-13
No files found.
ffmpeg.c
View file @
750382d5
...
...
@@ -1108,13 +1108,6 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
total_size
=
avio_size
(
oc
->
pb
);
if
(
total_size
<=
0
)
// FIXME improve avio_size() so it works with non seekable output too
total_size
=
avio_tell
(
oc
->
pb
);
if
(
total_size
<
0
)
{
char
errbuf
[
128
];
av_strerror
(
total_size
,
errbuf
,
sizeof
(
errbuf
));
av_log
(
NULL
,
AV_LOG_VERBOSE
,
"Bitrate not available, "
"avio_tell() failed: %s
\n
"
,
errbuf
);
total_size
=
0
;
}
buf
[
0
]
=
'\0'
;
vid
=
0
;
...
...
@@ -1195,16 +1188,21 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
hours
=
mins
/
60
;
mins
%=
60
;
bitrate
=
pts
?
total_size
*
8
/
(
pts
/
1000
.
0
)
:
0
;
bitrate
=
pts
&&
total_size
>=
0
?
total_size
*
8
/
(
pts
/
1000
.
0
)
:
-
1
;
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"size=%8.0fkB time="
,
total_size
/
1024
.
0
);
if
(
total_size
<
0
)
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"size=N/A time="
);
else
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"size=%8.0fkB time="
,
total_size
/
1024
.
0
);
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"%02d:%02d:%02d.%02d "
,
hours
,
mins
,
secs
,
(
100
*
us
)
/
AV_TIME_BASE
);
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"bitrate=%6.1fkbits/s"
,
bitrate
);
av_bprintf
(
&
buf_script
,
"total_size=%"
PRId64
"
\n
"
,
total_size
);
if
(
bitrate
<
0
)
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"bitrate=N/A"
);
else
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
"bitrate=%6.1fkbits/s"
,
bitrate
);
if
(
total_size
<
0
)
av_bprintf
(
&
buf_script
,
"total_size=N/A
\n
"
);
else
av_bprintf
(
&
buf_script
,
"total_size=%"
PRId64
"
\n
"
,
total_size
);
av_bprintf
(
&
buf_script
,
"out_time_ms=%"
PRId64
"
\n
"
,
pts
);
av_bprintf
(
&
buf_script
,
"out_time=%02d:%02d:%02d.%06d
\n
"
,
hours
,
mins
,
secs
,
us
);
...
...
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