vf_fps: use double constants for default/min/max for start_time
authorHendrik Leppkes <h.leppkes@gmail.com>
Tue, 27 Aug 2013 20:44:14 +0000 (22:44 +0200)
committerMartin Storsjö <martin@martin.st>
Wed, 28 Aug 2013 14:54:47 +0000 (17:54 +0300)
commitcb8f70c96e14c1b4824ef23d21d78d10fc5a4b93
tree8fec8fcd82c39eceafb1b5c478c25ceaa8e4943c
parent48f2e53ad0c8586369c3ce88712f0b9cec5a4c47
vf_fps: use double constants for default/min/max for start_time

When using AV_NOPTS_VALUE (which expands to INT64_C(0x8000000000000000))
as union initializer for a double field, the c99 converter needs to
interpret this constant when filling the union initializer, and it is
interpreted as a positive value.

When converting AV_NOPTS_VALUE to a double, MSVC 2010 ends up with
the same positive value as the c99 converter, while MSVC 2012 gets
a negative value.

This results in an infite loop in various FATE tests on MSVC 2012.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavfilter/vf_fps.c