Changeset 513 for OCO/branches/DAZ/drv16/dwavestrm.cpp
- Timestamp:
- Jul 12, 2010, 12:57:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/branches/DAZ/drv16/dwavestrm.cpp
r483 r513 168 168 ULONG DWAVESTREAM::StartStream(void) 169 169 { 170 #ifdef DEBUG171 170 dprintf(("DWAVESTREAM::StartStream")); 172 #endif173 171 return WAVESTREAM::StartStream(); 174 172 } 175 173 //***************************************************************************** 176 174 //***************************************************************************** 177 void DWAVESTREAM::AddBuffers( BOOL fFirst)175 void DWAVESTREAM::AddBuffers(SHORT sFirst) 178 176 { 179 177 PSTREAMBUFFER pTemp = (PSTREAMBUFFER)qhDone.Tail(); 180 178 ULONG space, Buff_left, byteswritten; 181 179 182 #ifdef DEBUG183 180 dprintf(("DW::AddBuffers")); 184 #endif185 181 if (!pTemp) pTemp = (PSTREAMBUFFER)qhInProcess.Tail(); 186 182 … … 194 190 return; 195 191 } 196 if( fFirst)192 if(sFirst) 197 193 { 198 194 space = min(space, 4*_configinfo.ulFragsize); … … 222 218 else 223 219 { 224 WAVESTREAM::AddBuffers( fFirst);220 WAVESTREAM::AddBuffers(sFirst); 225 221 } 226 222 }
Note:
See TracChangeset
for help on using the changeset viewer.