[FFmpeg-cvslog] vf_psnr: add psnr_avg to stats file.

Ronald S. Bultje git at videolan.org
Wed Aug 5 15:20:25 CEST 2015


ffmpeg | branch: master | Ronald S. Bultje <rsbultje at gmail.com> | Wed Aug  5 07:30:16 2015 -0400| [22b30f925d0db181dc63cb3e684d40377c7d0b38] | committer: Ronald S. Bultje

vf_psnr: add psnr_avg to stats file.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=22b30f925d0db181dc63cb3e684d40377c7d0b38
---

 libavfilter/vf_psnr.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c
index f202df3..3c1dc81 100644
--- a/libavfilter/vf_psnr.c
+++ b/libavfilter/vf_psnr.c
@@ -174,6 +174,7 @@ static AVFrame *do_psnr(AVFilterContext *ctx, AVFrame *main,
             c = s->is_rgb ? s->rgba_map[j] : j;
             fprintf(s->stats_file, "mse_%c:%0.2f ", s->comps[j], comp_mse[c]);
         }
+        fprintf(s->stats_file, "psnr_avg:%0.2f ", get_psnr(mse, 1, s->average_max));
         for (j = 0; j < s->nb_components; j++) {
             c = s->is_rgb ? s->rgba_map[j] : j;
             fprintf(s->stats_file, "psnr_%c:%0.2f ", s->comps[j],



More information about the ffmpeg-cvslog mailing list