mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
goom: fix compilation on ios-arm7-10.9 and osx-x86_64
uint is not a standard type, and the rest of the code uses Uint which is locally typedefed to unsigned int. https://bugzilla.gnome.org/show_bug.cgi?id=729067
This commit is contained in:
parent
3943c3ec08
commit
02436f52c6
1 changed files with 1 additions and 1 deletions
|
@ -731,7 +731,7 @@ generatePrecalCoef (int precalCoef[16][16])
|
||||||
if (!(coefh || coefv)) {
|
if (!(coefh || coefv)) {
|
||||||
i = 255;
|
i = 255;
|
||||||
} else {
|
} else {
|
||||||
uint i1, i2, i3, i4;
|
Uint i1, i2, i3, i4;
|
||||||
|
|
||||||
i1 = diffcoeffh * diffcoeffv;
|
i1 = diffcoeffh * diffcoeffv;
|
||||||
i2 = coefh * diffcoeffv;
|
i2 = coefh * diffcoeffv;
|
||||||
|
|
Loading…
Reference in a new issue