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
5727b222
Commit
5727b222
authored
Jul 30, 2001
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added benchmark option
Originally committed as revision 17 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ca9118c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
ffmpeg.c
ffmpeg.c
+20
-0
No files found.
ffmpeg.c
View file @
5727b222
...
...
@@ -26,6 +26,8 @@
#include <string.h>
#include <sys/poll.h>
#include <termios.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <ctype.h>
#include "avformat.h"
...
...
@@ -91,6 +93,7 @@ static char *str_title = NULL;
static
char
*
str_author
=
NULL
;
static
char
*
str_copyright
=
NULL
;
static
char
*
str_comment
=
NULL
;
static
int
do_benchmark
=
0
;
typedef
struct
AVOutputStream
{
int
file_index
;
/* file index */
...
...
@@ -1880,6 +1883,14 @@ void opt_output_file(const char *filename)
video_codec_id
=
CODEC_ID_NONE
;
}
INT64
getutime
(
void
)
{
struct
rusage
rusage
;
getrusage
(
RUSAGE_SELF
,
&
rusage
);
return
(
rusage
.
ru_utime
.
tv_sec
*
1000000LL
)
+
rusage
.
ru_utime
.
tv_usec
;
}
void
show_formats
(
void
)
{
AVFormat
*
f
;
...
...
@@ -2002,6 +2013,8 @@ const OptionDef options[] = {
{
"an"
,
OPT_BOOL
,
{
int_arg
:
&
audio_disable
},
"disable audio"
},
{
"ad"
,
HAS_ARG
|
OPT_EXPERT
,
{
opt_audio_device
},
"set audio device"
,
"device"
},
{
"acodec"
,
HAS_ARG
|
OPT_EXPERT
,
{
opt_audio_codec
},
"force audio codec"
,
"codec"
},
{
"benchmark"
,
OPT_BOOL
|
OPT_EXPERT
,
{
int_arg
:
&
do_benchmark
},
"add timings for benchmarking"
},
{
NULL
,
},
};
...
...
@@ -2057,12 +2070,19 @@ int main(int argc, char **argv)
}
av_grab
(
output_files
[
0
]);
}
else
{
INT64
ti
;
if
(
nb_output_files
<=
0
)
{
fprintf
(
stderr
,
"Must supply at least one output file
\n
"
);
exit
(
1
);
}
ti
=
getutime
();
av_encode
(
output_files
,
nb_output_files
,
input_files
,
nb_input_files
,
stream_maps
,
nb_stream_maps
);
ti
=
getutime
()
-
ti
;
if
(
do_benchmark
)
{
printf
(
"bench: utime=%0.3fs
\n
"
,
ti
/
1000000
.
0
);
}
}
/* close files */
...
...
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