summaryrefslogtreecommitdiff
path: root/avconv.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-03-17 07:15:02 +0100
committerAnton Khirnov <anton@khirnov.net>2014-03-24 06:16:31 +0100
commit781d97fd54b1f0d8f4f7536dbd932dca6445476e (patch)
tree5dd7384c542668f828a5cfbf75517a381e494700 /avconv.c
parentb4679ecdbd80ae050094733f137ccd7ebf1316ab (diff)
avconv: remove unused nb_frames_dup
Frame duplication now happens in vf_fps.
Diffstat (limited to 'avconv.c')
-rw-r--r--avconv.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/avconv.c b/avconv.c
index bf40d45253..d4f336bf2c 100644
--- a/avconv.c
+++ b/avconv.c
@@ -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_dup || nb_frames_drop)
- snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%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);