Searched defs:rateFloat (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/
H A DACodec.cpp2265 float rateFloat = -1; local
2266 if (!msg->findFloat("operating-rate", &rateFloat)) {
2268 rateFloat = (float)rateInt; // 16MHz (FLINTMAX) is OK for upper bound.
2270 if (rateFloat > 0) {
2271 err = setOperatingRate(rateFloat, video);
2356 status_t ACodec::setOperatingRate(float rateFloat, bool isVideo) { argument
2357 if (rateFloat < 0) {
2362 if (rateFloat > 65535) {
2365 rate = (OMX_U32)(rateFloat * 65536.0f + 0.5f);
2367 if (rateFloat > UINT_MA
[all...]

Completed in 673 milliseconds