summaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-01 00:25:03 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-01 00:25:03 +0100
commite20f2dc048fd1fccda7ab56fbadd53054439f452 (patch)
treeb0fb58866d335abe4ab239561357ac46f15b8900 /ffmpeg.c
parent1d178710b429cedaa98bf971c16c8e32a94223f4 (diff)
downloadffmpeg-streaming-e20f2dc048fd1fccda7ab56fbadd53054439f452.zip
ffmpeg-streaming-e20f2dc048fd1fccda7ab56fbadd53054439f452.tar.gz
ffmpeg: fix variable name in psnr printing code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 65f252b..f1e6834 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1215,7 +1215,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
p = psnr(error / scale);
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
av_bprintf(&buf_script, "stream_%d_%d_psnr_%c=%2.2f\n",
- ost->file_index, ost->index, type[i] | 32, p);
+ ost->file_index, ost->index, type[j] | 32, p);
}
p = psnr(error_sum / scale_sum);
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "*:%2.2f ", psnr(error_sum / scale_sum));
OpenPOWER on IntegriCloud