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

/frameworks/av/media/libstagefright/
H A DACodec.cpp2273 float rateFloat = -1; local
2274 if (!msg->findFloat("operating-rate", &rateFloat)) {
2276 rateFloat = (float)rateInt; // 16MHz (FLINTMAX) is OK for upper bound.
2278 if (rateFloat > 0) {
2279 err = setOperatingRate(rateFloat, mIsVideo);
2364 status_t ACodec::setOperatingRate(float rateFloat, bool isVideo) { argument
2365 if (rateFloat < 0) {
2370 if (rateFloat > 65535) {
2373 rate = (OMX_U32)(rateFloat * 65536.0f + 0.5f);
2375 if (rateFloat > UINT_MA
7352 float rateFloat = -1; local
[all...]

Completed in 56 milliseconds