Lines Matching refs:info

160         var groupCount = this.ics.info.groupCount,
161 maxSFB = this.ics.info.maxSFB,
214 var info = this.ics.info,
215 swbOffsets = info.swbOffsets,
216 groupCount = info.groupCount,
217 maxSFB = info.maxSFB,
226 var len = info.groupLength[g];
289 left.info.decode(stream, config, true);
290 right.info = left.info;
297 var len = left.info.groupCount * left.info.maxSFB;
580 info = element.info,
597 this.filter_bank.process(info, data, this.data[channel], channel);
617 l_info = left.info,
618 r_info = right.info,
667 info = ics.info,
668 offsets = info.swbOffsets,
669 windowGroups = info.groupCount,
670 maxSFB = info.maxSFB,
687 for (var w = 0; w < info.groupLength[g]; w++) {
702 groupOff += info.groupLength[g] * 128;
709 info = ics.info,
710 offsets = info.swbOffsets,
711 windowGroups = info.groupCount,
712 maxSFB = info.maxSFB,
720 for (var w = 0; w < info.groupLength[g]; w++) {
730 groupOff += info.groupLength[g] * 128;
1051 FilterBank.prototype.process = function(info, input, output, channel) { argument
1053 windowShape = info.windowShape[1],
1054 windowShapePrev = info.windowShape[0],
1067 switch (info.windowSequence) {
2693 this.info = new ICSInfo();
2726 this.info.decode(stream, config, commonWindow);
2732 if (this.info.windowSequence === ICStream.EIGHT_SHORT_SEQUENCE)
2739 this.tns.decode(stream, this.info);
2750 var bits = this.info.windowSequence === ICStream.EIGHT_SHORT_SEQUENCE ? 3 : 5,
2751 groupCount = this.info.groupCount,
2752 maxSFB = this.info.maxSFB,
2785 var groupCount = this.info.groupCount,
2786 maxSFB = this.info.maxSFB,
2845 if (pulseSWB >= this.info.swbCount)
2854 this.pulseOffset[0] = this.info.swbOffsets[pulseSWB] + stream.read(5);
2871 info = this.info,
2872 maxSFB = info.maxSFB,
2873 windowGroups = info.groupCount,
2874 offsets = info.swbOffsets,
2881 var groupLen = info.groupLength[g];
4535 TNS.prototype.decode = function(stream, info) { argument
4536 var windowCount = info.windowCount,
4537 bits = info.windowSequence === 2 ? SHORT_BITS : LONG_BITS;
4576 info = ics.info,
4577 windowCount = info.windowCount;
4580 var bottom = info.swbCount,
4609 var start = info.swbOffsets[Math.min(bottom, mmm)],
4610 end = info.swbOffsets[Math.min(top, mmm)],