Lines Matching refs:read

30         if (stream.read(12) !== 0xfff)
35 var protectionAbsent = !!stream.read(1);
37 ret.profile = stream.read(2) + 1;
38 ret.samplingIndex = stream.read(4);
41 ret.chanConfig = stream.read(3);
44 ret.frameLength = stream.read(13);
47 ret.numFrames = stream.read(2) + 1;
133 this.couplingPoint = 2 * stream.read(1);
134 this.coupledCount = stream.read(3);
139 channelPair[i] = stream.read(1);
140 idSelect[i] = stream.read(4);
143 chSelect[i] = stream.read(2);
152 this.couplingPoint += stream.read(1);
155 var sign = stream.read(1),
156 scale = CCE_SCALE[stream.read(2)];
171 cge = this.couplingPoint === CCEElement.AFTER_IMDCT ? 1 : stream.read(1);
288 if (this.commonWindow = !!stream.read(1)) {
292 var mask = stream.read(2);
299 ms_used[i] = !!stream.read(1);
384 this.config.profile = stream.read(5);
386 this.config.profile = 32 + stream.read(6);
388 this.config.sampleIndex = stream.read(4);
390 this.config.sampleRate = stream.read(24);
401 this.config.chanConfig = stream.read(4);
408 if (stream.read(1)) // frameLengthFlag
413 if (stream.read(1)) // dependsOnCoreCoder
416 if (stream.read(1)) { // extensionFlag
418 this.config.sectionDataResilience = stream.read(1);
419 this.config.scalefactorResilience = stream.read(1);
420 this.config.spectralDataResilience = stream.read(1);
466 while ((elementType = stream.read(3)) !== END_ELEMENT) {
467 var id = stream.read(4);
496 var align = stream.read(1),
497 count = stream.read(8);
500 count += stream.read(8);
517 id += stream.read(8) - 1;
2600 cw = stream.read(len);
2606 cw |= stream.read(j);
2614 if (data[i] && stream.read(1))
2621 while (stream.read(1))
2624 var j = stream.read(i) | (1 << i);
2723 this.globalGain = stream.read(8);
2731 if (this.pulsePresent = stream.read(1)) {
2738 if (this.tnsPresent = stream.read(1)) {
2742 if (this.gainPresent = stream.read(1)) {
2762 bandType = stream.read(4);
2768 while ((incr = stream.read(bits)) === escape)
2817 offset[1] += stream.read(9) - 256;
2842 var pulseCount = stream.read(2) + 1,
2843 pulseSWB = stream.read(6);
2854 this.pulseOffset[0] = this.info.swbOffsets[pulseSWB] + stream.read(5);
2855 this.pulseAmp[0] = stream.read(4);
2861 this.pulseOffset[i] = stream.read(5) + this.pulseOffset[i - 1];
2865 this.pulseAmp[i] = stream.read(4);
2948 this.windowSequence = stream.read(2);
2950 this.windowShape[1] = stream.read(1);
2956 this.maxSFB = stream.read(4);
2958 if (stream.read(1)) {
2971 this.maxSFB = stream.read(6);
2975 this.predictorPresent = !!stream.read(1);
4540 if (this.nFilt[w] = stream.read(bits[0])) {
4541 var coefRes = stream.read(1),
4549 length_w[filt] = stream.read(bits[1]);
4551 if ((order_w[filt] = stream.read(bits[2])) > 20)
4555 direction_w[filt] = !!stream.read(1);
4556 var coefCompress = stream.read(1),
4564 coef_w_filt[i] = table[stream.read(coefLen)];