Bug 851949 - Avoid setting AudioParam values needlessly; r=roc

This commit is contained in:
Ehsan Akhgari 2013-03-17 15:57:15 -04:00
Родитель eb7288536a
Коммит 6ab726ea62
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -64,6 +64,10 @@ public:
// sure that the callback is called every time that this object gets mutated.
void SetValue(float aValue)
{
// Optimize away setting the same value on an AudioParam
if (HasSimpleValue() && fabsf(GetValue() - aValue) < 1e-7) {
return;
}
AudioParamTimeline::SetValue(aValue);
mCallback(mNode);
}