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
9303b794
Commit
9303b794
authored
Feb 08, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Feb 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: move do_video_stats() above do_video_out().
This avoid a forward declaration.
parent
a78dd826
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
43 deletions
+42
-43
ffmpeg.c
ffmpeg.c
+42
-43
No files found.
ffmpeg.c
View file @
9303b794
...
@@ -1444,7 +1444,48 @@ static void do_video_resample(OutputStream *ost,
...
@@ -1444,7 +1444,48 @@ static void do_video_resample(OutputStream *ost,
#endif
#endif
}
}
static
void
do_video_stats
(
AVFormatContext
*
os
,
OutputStream
*
ost
,
int
frame_size
);
static
double
psnr
(
double
d
)
{
return
-
10
.
0
*
log
(
d
)
/
log
(
10
.
0
);
}
static
void
do_video_stats
(
AVFormatContext
*
os
,
OutputStream
*
ost
,
int
frame_size
)
{
AVCodecContext
*
enc
;
int
frame_number
;
double
ti1
,
bitrate
,
avg_bitrate
;
/* this is executed just the first time do_video_stats is called */
if
(
!
vstats_file
)
{
vstats_file
=
fopen
(
vstats_filename
,
"w"
);
if
(
!
vstats_file
)
{
perror
(
"fopen"
);
exit_program
(
1
);
}
}
enc
=
ost
->
st
->
codec
;
if
(
enc
->
codec_type
==
AVMEDIA_TYPE_VIDEO
)
{
frame_number
=
ost
->
frame_number
;
fprintf
(
vstats_file
,
"frame= %5d q= %2.1f "
,
frame_number
,
enc
->
coded_frame
->
quality
/
(
float
)
FF_QP2LAMBDA
);
if
(
enc
->
flags
&
CODEC_FLAG_PSNR
)
fprintf
(
vstats_file
,
"PSNR= %6.2f "
,
psnr
(
enc
->
coded_frame
->
error
[
0
]
/
(
enc
->
width
*
enc
->
height
*
255
.
0
*
255
.
0
)));
fprintf
(
vstats_file
,
"f_size= %6d "
,
frame_size
);
/* compute pts value */
ti1
=
ost
->
sync_opts
*
av_q2d
(
enc
->
time_base
);
if
(
ti1
<
0
.
01
)
ti1
=
0
.
01
;
bitrate
=
(
frame_size
*
8
)
/
av_q2d
(
enc
->
time_base
)
/
1000
.
0
;
avg_bitrate
=
(
double
)(
video_size
*
8
)
/
ti1
/
1000
.
0
;
fprintf
(
vstats_file
,
"s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s "
,
(
double
)
video_size
/
1024
,
ti1
,
bitrate
,
avg_bitrate
);
fprintf
(
vstats_file
,
"type= %c
\n
"
,
av_get_picture_type_char
(
enc
->
coded_frame
->
pict_type
));
}
}
static
void
do_video_out
(
AVFormatContext
*
s
,
static
void
do_video_out
(
AVFormatContext
*
s
,
OutputStream
*
ost
,
OutputStream
*
ost
,
...
@@ -1592,48 +1633,6 @@ static void do_video_out(AVFormatContext *s,
...
@@ -1592,48 +1633,6 @@ static void do_video_out(AVFormatContext *s,
do_video_stats
(
output_files
[
ost
->
file_index
].
ctx
,
ost
,
frame_size
);
do_video_stats
(
output_files
[
ost
->
file_index
].
ctx
,
ost
,
frame_size
);
}
}
static
double
psnr
(
double
d
)
{
return
-
10
.
0
*
log
(
d
)
/
log
(
10
.
0
);
}
static
void
do_video_stats
(
AVFormatContext
*
os
,
OutputStream
*
ost
,
int
frame_size
)
{
AVCodecContext
*
enc
;
int
frame_number
;
double
ti1
,
bitrate
,
avg_bitrate
;
/* this is executed just the first time do_video_stats is called */
if
(
!
vstats_file
)
{
vstats_file
=
fopen
(
vstats_filename
,
"w"
);
if
(
!
vstats_file
)
{
perror
(
"fopen"
);
exit_program
(
1
);
}
}
enc
=
ost
->
st
->
codec
;
if
(
enc
->
codec_type
==
AVMEDIA_TYPE_VIDEO
)
{
frame_number
=
ost
->
frame_number
;
fprintf
(
vstats_file
,
"frame= %5d q= %2.1f "
,
frame_number
,
enc
->
coded_frame
->
quality
/
(
float
)
FF_QP2LAMBDA
);
if
(
enc
->
flags
&
CODEC_FLAG_PSNR
)
fprintf
(
vstats_file
,
"PSNR= %6.2f "
,
psnr
(
enc
->
coded_frame
->
error
[
0
]
/
(
enc
->
width
*
enc
->
height
*
255
.
0
*
255
.
0
)));
fprintf
(
vstats_file
,
"f_size= %6d "
,
frame_size
);
/* compute pts value */
ti1
=
ost
->
sync_opts
*
av_q2d
(
enc
->
time_base
);
if
(
ti1
<
0
.
01
)
ti1
=
0
.
01
;
bitrate
=
(
frame_size
*
8
)
/
av_q2d
(
enc
->
time_base
)
/
1000
.
0
;
avg_bitrate
=
(
double
)(
video_size
*
8
)
/
ti1
/
1000
.
0
;
fprintf
(
vstats_file
,
"s_size= %8.0fkB time= %0.3f br= %7.1fkbits/s avg_br= %7.1fkbits/s "
,
(
double
)
video_size
/
1024
,
ti1
,
bitrate
,
avg_bitrate
);
fprintf
(
vstats_file
,
"type= %c
\n
"
,
av_get_picture_type_char
(
enc
->
coded_frame
->
pict_type
));
}
}
static
void
print_report
(
OutputFile
*
output_files
,
static
void
print_report
(
OutputFile
*
output_files
,
OutputStream
*
ost_table
,
int
nb_ostreams
,
OutputStream
*
ost_table
,
int
nb_ostreams
,
int
is_last_report
,
int64_t
timer_start
,
int64_t
cur_time
)
int
is_last_report
,
int64_t
timer_start
,
int64_t
cur_time
)
...
...
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