OSDN Git Service

vp9: change order of operations in adapt_prob().
authorRonald S. Bultje <rsbultje@gmail.com>
Fri, 14 Oct 2016 17:01:27 +0000 (13:01 -0400)
committerRonald S. Bultje <rsbultje@gmail.com>
Mon, 24 Oct 2016 20:02:39 +0000 (16:02 -0400)
commitbe885da3427c5d9a6fa68229d16318afffe67193
treea3203f05788df88cf61f01e5008c43a9ebfffb78
parent490c6bda0e35498a24936fd1524317aeebed026b
vp9: change order of operations in adapt_prob().

This is intended to workaround bug "665 Integer Divide Instruction May
Cause Unpredictable Behavior" on some early AMD CPUs, which causes a
div-by-zero in this codepath, such as reported in Mozilla bug #1293996.

Note that this isn't guaranteed to fix the bug, since a compiler is free
to reorder instructions that don't depend on each other. However, it
appears to fix the bug in Firefox, and a similar patch was applied to
libvpx also (see Chrome bug #599899).
libavcodec/vp9.c