Home
last modified time | relevance | path

Searched refs:sfreq (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/module/codecs/mp3dec/src/
Dpvmp3_mpeg2_stereo_proc.cpp228 int32 sfreq; in pvmp3_mpeg2_stereo_proc() local
258 sfreq = info->version_x + (info->version_x << 1); in pvmp3_mpeg2_stereo_proc()
259 sfreq += info->sampling_frequency; in pvmp3_mpeg2_stereo_proc()
297 if (mp3_sfBandIndex[sfreq].l[4] <= sb) in pvmp3_mpeg2_stereo_proc()
306 while (mp3_sfBandIndex[sfreq].l[i] <= sb) in pvmp3_mpeg2_stereo_proc()
312 sfbNo = mp3_sfBandIndex[sfreq].l[sfbTemp]; /* number of lines to process */ in pvmp3_mpeg2_stereo_proc()
325 sfbStart = mp3_sfBandIndex[sfreq].l[sfb]; /* = Start in 0 ... 575 */ in pvmp3_mpeg2_stereo_proc()
326 …sfbNo = mp3_sfBandIndex[sfreq].l[sfb+1] - mp3_sfBandIndex[sfreq].l[sfb]; /* No of lines to process… in pvmp3_mpeg2_stereo_proc()
355 …sfbNo = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; /* No of lines to process… in pvmp3_mpeg2_stereo_proc()
356 sfbStart = 3 * mp3_sfBandIndex[sfreq].s[sfb] + j * sfbNo; in pvmp3_mpeg2_stereo_proc()
[all …]
Dpvmp3_stereo_proc.cpp286 int32 sfreq = info->version_x + (info->version_x << 1); in pvmp3_stereo_proc() local
287 sfreq += info->sampling_frequency; in pvmp3_stereo_proc()
329 if (mp3_sfBandIndex[sfreq].l[4] <= sb) in pvmp3_stereo_proc()
338 while (mp3_sfBandIndex[sfreq].l[sfb] < sb) in pvmp3_stereo_proc()
346 sfbStart = mp3_sfBandIndex[sfreq].l[sfb]; in pvmp3_stereo_proc()
362 sfbStart = mp3_sfBandIndex[sfreq].l[sfbTemp]; /* = Start in 0 ... 575 */ in pvmp3_stereo_proc()
363 …sfbNo = mp3_sfBandIndex[sfreq].l[sfbTemp+1] - mp3_sfBandIndex[sfreq].l[sfbTemp]; /* No of lines to… in pvmp3_stereo_proc()
381 …sfbNo = mp3_sfBandIndex[sfreq].s[sfbTemp+1] - mp3_sfBandIndex[sfreq].s[sfbTemp]; /* No of lines to… in pvmp3_stereo_proc()
382 sfbStart = 3 * mp3_sfBandIndex[sfreq].s[sfbTemp] + j * sfbNo; in pvmp3_stereo_proc()
414 lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; in pvmp3_stereo_proc()
[all …]
Dpvmp3_dequantize_sample.cpp196 int32 sfreq = info->sampling_frequency + info->version_x + (info->version_x << 1); in pvmp3_dequantize_sample() local
214 next_cb_boundary = mp3_sfBandIndex[sfreq].l[1]; /* LONG blocks: 0,1,3 */ in pvmp3_dequantize_sample()
218 next_cb_boundary = mp3_sfBandIndex[sfreq].s[1] * 3; /* pure SHORT block */ in pvmp3_dequantize_sample()
233 if (next_cb_boundary == mp3_sfBandIndex[sfreq].l[mixstart]) in pvmp3_dequantize_sample()
235 next_cb_boundary = mp3_sfBandIndex[sfreq].s[4] * 3; in pvmp3_dequantize_sample()
237 cb_begin = mp3_sfBandIndex[sfreq].s[3] * 3; in pvmp3_dequantize_sample()
241 else if (ss < mp3_sfBandIndex[sfreq].l[mixstart]) in pvmp3_dequantize_sample()
243 next_cb_boundary = mp3_sfBandIndex[sfreq].l[cb+1]; in pvmp3_dequantize_sample()
247 next_cb_boundary = mp3_sfBandIndex[sfreq].s[cb+1] * 3; in pvmp3_dequantize_sample()
250 cb_begin = mp3_sfBandIndex[sfreq].s[cb] * 3; in pvmp3_dequantize_sample()
[all …]
Dpvmp3_reorder.cpp125 int32 sfreq = info->version_x + (info->version_x << 1); in pvmp3_reorder() local
126 sfreq += info->sampling_frequency; in pvmp3_reorder()
149 if (*used_freq_lines > 3*mp3_sfBandIndex[sfreq].s[sfb+1]) in pvmp3_reorder()
151 sfb_lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; in pvmp3_reorder()
172 sfb_lines = mp3_sfBandIndex[sfreq].s[sfb+1] - mp3_sfBandIndex[sfreq].s[sfb]; in pvmp3_reorder()
187 *used_freq_lines = mp3_sfBandIndex[sfreq].s[sfb+1] * 3; in pvmp3_reorder()
Dpvmp3_huffman_parsing.cpp136 int32 sfreq; in pvmp3_huffman_parsing() local
146 sfreq = info->sampling_frequency + info->version_x + (info->version_x << 1); in pvmp3_huffman_parsing()
162 region1Start = mp3_sfBandIndex[sfreq].s[i/3]; in pvmp3_huffman_parsing()
171 region1Start = mp3_sfBandIndex[sfreq].l[i]; in pvmp3_huffman_parsing()
172 region2Start = mp3_sfBandIndex[sfreq].l[i + grInfo->region1_count + 1]; in pvmp3_huffman_parsing()