libavfilter/vf_vidstabtransform.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_vidstabtransform.c b/libavfilter/vf_vidstabtransform.c
index 3c0a5ee..d5f4a2f 100644
|
a
|
b
|
static int config_input(AVFilterLink *inlink)
|
| 186 | 186 | VSManyLocalMotions mlms; |
| 187 | 187 | if (vsReadLocalMotionsFile(f, &mlms) == VS_OK) { |
| 188 | 188 | // calculate the actual transforms from the local motions |
| 189 | | if (vsLocalmotions2TransformsSimple(td, &mlms, &tc->trans) != VS_OK) { |
| | 189 | if (vsLocalmotions2Transforms(td, &mlms, &tc->trans) != VS_OK) { |
| 190 | 190 | av_log(ctx, AV_LOG_ERROR, "calculating transformations failed\n"); |
| 191 | 191 | return AVERROR(EINVAL); |
| 192 | 192 | } |