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
70478746
Commit
70478746
authored
Oct 24, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: Drop unused function argument from do_video_stats()
parent
ab799664
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
avconv.c
avconv.c
+2
-3
No files found.
avconv.c
View file @
70478746
...
...
@@ -621,8 +621,7 @@ 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
)
static
void
do_video_stats
(
OutputStream
*
ost
,
int
frame_size
)
{
AVCodecContext
*
enc
;
int
frame_number
;
...
...
@@ -706,7 +705,7 @@ static int poll_filter(OutputStream *ost)
do_video_out
(
of
->
ctx
,
ost
,
filtered_frame
,
&
frame_size
);
if
(
vstats_filename
&&
frame_size
)
do_video_stats
(
o
f
->
ctx
,
o
st
,
frame_size
);
do_video_stats
(
ost
,
frame_size
);
break
;
case
AVMEDIA_TYPE_AUDIO
:
do_audio_out
(
of
->
ctx
,
ost
,
filtered_frame
);
...
...
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