Changeset 75031 in vbox
- Timestamp:
- Oct 24, 2018 11:45:40 AM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/WebMWriter.h
r75030 r75031 530 530 #endif 531 531 532 int processQueue s(WebMQueue *pQueue, bool fForce);532 int processQueue(WebMQueue *pQueue, bool fForce); 533 533 534 534 protected: -
trunk/src/VBox/Main/src-client/WebMWriter.cpp
r75030 r75031 143 143 144 144 /* Make sure to drain all queues. */ 145 processQueue s(&CurSeg.queueBlocks, true /* fForce */);145 processQueue(&CurSeg.queueBlocks, true /* fForce */); 146 146 147 147 writeFooter(); … … 464 464 } 465 465 466 processQueue s(&CurSeg.queueBlocks, false /* fForce */);466 processQueue(&CurSeg.queueBlocks, false /* fForce */); 467 467 } 468 468 catch(...) … … 622 622 * Needed to drain the queues when terminating. 623 623 */ 624 int WebMWriter::processQueue s(WebMQueue *pQueue, bool fForce)624 int WebMWriter::processQueue(WebMQueue *pQueue, bool fForce) 625 625 { 626 626 if (pQueue->tsLastProcessedMs == 0)
Note:
See TracChangeset
for help on using the changeset viewer.