Searched refs:wholePart (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1557 int wholePart = degreex10000 / 10000; local
1558 if (wholePart == 0) {
1559 snprintf(str, 5, "%c%.2d.", sign, wholePart);
1561 snprintf(str, 5, "%+.2d.", wholePart);
1565 int fractionalPart = degreex10000 - (wholePart * 10000);
1582 int wholePart = degreex10000 / 10000; local
1583 if (wholePart == 0) {
1584 snprintf(str, 6, "%c%.3d.", sign, wholePart);
1586 snprintf(str, 6, "%+.3d.", wholePart);
1590 int fractionalPart = degreex10000 - (wholePart * 1000
[all...]

Completed in 66 milliseconds