~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to CPP/7zip/Archive/Common/CoderMixer2.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
    destBindInfo.InStreams.Add(_srcOutToDestInMap[_srcBindInfo.OutStreams[i]]);
82
82
}
83
83
 
84
 
CCoderInfo2::CCoderInfo2(UInt32 numInStreams, UInt32 numOutStreams): 
 
84
CCoderInfo2::CCoderInfo2(UInt32 numInStreams, UInt32 numOutStreams):
85
85
    NumInStreams(numInStreams),
86
86
    NumOutStreams(numOutStreams)
87
87
{
91
91
  OutSizePointers.Reserve(NumOutStreams);
92
92
}
93
93
 
94
 
static void SetSizes(const UInt64 **srcSizes, CRecordVector<UInt64> &sizes, 
 
94
static void SetSizes(const UInt64 **srcSizes, CRecordVector<UInt64> &sizes,
95
95
    CRecordVector<const UInt64 *> &sizePointers, UInt32 numItems)
96
96
{
97
97
  sizes.Clear();
118
118
  SetSizes(outSizes, OutSizes, OutSizePointers, NumOutStreams);
119
119
}
120
120
 
121
 
}  
 
121
}