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

/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtransform.c472 Word32 ws1,ws2; local
500 ws1 = timeSignalSample * (*winPtr >> 16);
505 *outData0++ = (ws1 >> 2) - (ws2 >> 2);
517 ws1 = timeSignalSample * (*winPtr & 0xffff);
522 *outData0-- = -((ws1 >> 2) + (ws2 >> 2));
547 ws1 = timeSignalSample * (*winPtr >> 16);
551 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
568 ws1 = timeSignalSample * (*winPtr & 0xffff);
572 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
604 ws1
[all...]

Completed in 30 milliseconds