Home | History | Annotate | Download | only in src

Lines Matching refs:temp

121     uint32  temp;
136 temp = getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
137 if ((temp & SYNC_WORD) != SYNC_WORD)
147 temp = getNbits(inputStream, 21); // to avoid multiple bitstream accesses
150 switch (temp >> 19) /* 2 */
167 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
168 info->error_protection = !((temp << 15) >> 31); /* 1 */
173 calculate_crc((temp << 16) >> 16, 16, crc);
176 info->bitrate_index = (temp << 16) >> 28; /* 4 */
177 info->sampling_frequency = (temp << 20) >> 30; /* 2 */
178 info->padding = (temp << 22) >> 31; /* 1 */
179 info->extension = (temp << 23) >> 31; /* 1 */
180 info->mode = (temp << 24) >> 30; /* 2 */
181 info->mode_ext = (temp << 26) >> 30; /* 2 */
182 info->copyright = (temp << 27) >> 31; /* 1 */
183 info->original = (temp << 28) >> 31; /* 1 */
184 info->emphasis = (temp << 30) >> 30; /* 2 */