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
781d97fd
Commit
781d97fd
authored
Mar 17, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: remove unused nb_frames_dup
Frame duplication now happens in vf_fps.
parent
b4679ecd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
avconv.c
avconv.c
+3
-4
No files found.
avconv.c
View file @
781d97fd
...
...
@@ -87,7 +87,6 @@ static FILE *vstats_file;
static
int64_t
video_size
=
0
;
static
int64_t
audio_size
=
0
;
static
int64_t
extra_size
=
0
;
static
int
nb_frames_dup
=
0
;
static
int
nb_frames_drop
=
0
;
...
...
@@ -849,9 +848,9 @@ static void print_report(int is_last_report, int64_t timer_start)
"size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s"
,
(
double
)
total_size
/
1024
,
ti1
,
bitrate
);
if
(
nb_frames_d
up
||
nb_frames_d
rop
)
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
" d
up=%d d
rop=%d"
,
nb_frames_dup
,
nb_frames_drop
);
if
(
nb_frames_drop
)
snprintf
(
buf
+
strlen
(
buf
),
sizeof
(
buf
)
-
strlen
(
buf
),
" drop=%d"
,
nb_frames_drop
);
av_log
(
NULL
,
AV_LOG_INFO
,
"%s
\r
"
,
buf
);
...
...
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