Changeset cb8f70c9 in ffmpeg

Timestamp:
Aug 28, 2013, 2:54:47 PM (11 years ago)
Author:
Martin Storsjö <martin@martin.st>
Branches:
master
Children:
6454c44f, 88262e1c
Parents:
48f2e53a
git-author:
Hendrik Leppkes <h.leppkes@gmail.com> (08/27/13 20:44:14)
git-committer:
Martin Storsjö <martin@martin.st> (08/28/13 14:54:47)
Message:

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>

(No files)

Note: See TracChangeset for help on using the changeset viewer.