avconv: Drop unused function argument from do_video_stats()
authorDiego Biurrun <diego@biurrun.de>
Wed, 24 Oct 2012 17:18:12 +0000 (19:18 +0200)
committerDiego Biurrun <diego@biurrun.de>
Mon, 29 Oct 2012 18:07:58 +0000 (19:07 +0100)
avconv.c

index 54a0e2a4319135e2600acce015c03987eb545180..d0902a6c9f88bacafe346253988875ea5141fa04 100644 (file)
--- a/avconv.c
+++ b/avconv.c
@@ -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(of->ctx, ost, frame_size);
+            do_video_stats(ost, frame_size);
         break;
     case AVMEDIA_TYPE_AUDIO:
         do_audio_out(of->ctx, ost, filtered_frame);