1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-20 07:48:15 +02:00
Kevin Mark 5aea18cbd8 doc/filters: Correct scale doc regarding w/h <= 0
According to libavfilter/scale.c, if the width and height are both
less than or equal to 0 then the input size is used for both
dimensions. It does not need to be -1. -1:-1 is the same as 0:0 which
is the same as -10:-42, etc.

if (w < 0 && h < 0)
    eval_w = eval_h = 0;

The documentation for the zscale filter has also been updated since the
behavior is identical.

Signed-off-by: Kevin Mark <kmark937@gmail.com>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2017-06-19 14:24:55 -04:00
..
2016-10-21 23:58:47 +02:00
2017-03-28 00:13:47 +02:00
2017-03-28 00:13:47 +02:00
2016-10-01 19:58:04 +01:00
2016-12-08 18:25:30 +01:00
2017-02-03 15:03:44 +01:00
2016-10-03 00:16:27 +01:00
2016-10-03 00:16:27 +01:00