diff options
author | Clément Bœsch <clement@stupeflix.com> | 2014-02-07 09:33:56 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2014-02-07 09:33:56 +0100 |
commit | f21d0beb0cc4245f5b1800511a5f20cc592fdee0 (patch) | |
tree | 66188c6249cef0a66e53886dd234b4fab765cb01 /libavfilter | |
parent | 6ef57f4d9a0920c82237facb0d1f3856b17da9dc (diff) | |
download | ffmpeg-f21d0beb0cc4245f5b1800511a5f20cc592fdee0.tar.gz |
Fix a few heigth/height typo.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_psnr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c index 4915816da3..082612ad54 100644 --- a/libavfilter/vf_psnr.c +++ b/libavfilter/vf_psnr.c @@ -246,7 +246,7 @@ static int config_input_ref(AVFilterLink *inlink) s->nb_components = desc->nb_components; if (ctx->inputs[0]->w != ctx->inputs[1]->w || ctx->inputs[0]->h != ctx->inputs[1]->h) { - av_log(ctx, AV_LOG_ERROR, "Width and heigth of input videos must be same.\n"); + av_log(ctx, AV_LOG_ERROR, "Width and height of input videos must be same.\n"); return AVERROR(EINVAL); } if (ctx->inputs[0]->format != ctx->inputs[1]->format) { |