Lines Matching defs:bond
521 const int bond = _bindInfo.FindBond_for_UnpackStream(DestOut_to_SrcIn[i]);
523 if (bond < 0)
530 streamSize = _mixer->GetBondStreamSize((unsigned)bond);
598 NCoderMixer2::CBond bond;
599 bond.PackIndex = numOutStreams;
600 bond.UnpackIndex = i + 1; // it's next coder
601 _bindInfo.Bonds.Add(bond);
620 const CBond2 &bond = _options.Bonds[i];
621 if (bond.InCoder >= _bindInfo.Coders.Size()
622 || bond.OutCoder >= _bindInfo.Coders.Size()
623 || bond.OutStream >= _bindInfo.Coders[bond.OutCoder].NumStreams)
625 mixerBond.PackIndex = _bindInfo.GetStream_for_Coder(bond.OutCoder) + bond.OutStream;
626 mixerBond.UnpackIndex = bond.InCoder;
656 const int bond = _bindInfo.FindBond_for_PackStream(outIndex);
657 if (bond >= 0)
659 ci = _bindInfo.Bonds[(unsigned)bond].UnpackIndex;
678 NCoderMixer2::CBond bond;
679 bond.UnpackIndex = numInStreams + i;
680 bond.PackIndex = _bindInfo.PackStreams[i];
681 _bindInfo.Bonds.Add(bond);