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

/frameworks/av/media/libstagefright/
H A DACodec.cpp2161 float rateFloat = -1; local
2162 if (!msg->findFloat("operating-rate", &rateFloat)) {
2164 rateFloat = (float)rateInt; // 16MHz (FLINTMAX) is OK for upper bound.
2166 if (rateFloat > 0) {
2167 err = setOperatingRate(rateFloat, video);
2199 status_t ACodec::setOperatingRate(float rateFloat, bool isVideo) { argument
2200 if (rateFloat < 0) {
2205 if (rateFloat > 65535) {
2208 rate = (OMX_U32)(rateFloat * 65536.0f + 0.5f);
2210 if (rateFloat > UINT_MA
[all...]

Completed in 1399 milliseconds