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

/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1089 int wholePart = degreex10000 / 10000; local
1090 if (wholePart == 0) {
1091 snprintf(str, 5, "%c%.2d.", sign, wholePart);
1093 snprintf(str, 5, "%+.2d.", wholePart);
1097 int fractionalPart = degreex10000 - (wholePart * 10000);
1114 int wholePart = degreex10000 / 10000; local
1115 if (wholePart == 0) {
1116 snprintf(str, 6, "%c%.3d.", sign, wholePart);
1118 snprintf(str, 6, "%+.3d.", wholePart);
1122 int fractionalPart = degreex10000 - (wholePart * 1000
[all...]

Completed in 482 milliseconds