1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Fix a few heigth/height typo.

This commit is contained in:
Clément Bœsch 2014-02-07 09:33:56 +01:00
parent 6ef57f4d9a
commit f21d0beb0c
2 changed files with 3 additions and 3 deletions

View File

@ -6786,11 +6786,11 @@ pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
@item in_w, iw
@item in_h, ih
the input video width and heigth
the input video width and height
@item out_w, ow
@item out_h, oh
the output width and heigth, that is the size of the padded area as
the output width and height, that is the size of the padded area as
specified by the @var{width} and @var{height} expressions
@item rotw(a)

View File

@ -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) {