OSDN Git Service

vp9: Ensure that the arithmetic coder values are read in the right order
authorMartin Storsjö <martin@martin.st>
Mon, 11 Nov 2013 13:02:09 +0000 (15:02 +0200)
committerClément Bœsch <u@pkh.me>
Sat, 16 Nov 2013 19:25:25 +0000 (20:25 +0100)
commitab80d7e8c52d912b94aeca52f77c03492c71ea94
treebba033476b2dd611deca969103ad308cd63ce638
parent7cd555dfa54a9b9b83749977e7eec3f023ff2b36
vp9: Ensure that the arithmetic coder values are read in the right order

The operands of an addition can be evaluated in any order, since
the addition isn't a sequence point. The only operators that
have a defined evaluation order are &&, ||, ?: and the sequence
operator ','.

This fixes fate-vp9 on ARM RVCT.
libavcodec/vp9.c