Changeset 25489
- Timestamp:
- 01/06/14 19:50:18 (9 years ago)
- Location:
- titan/titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/marker.h
r25488 r25489 192 192 atime = (aktpts - startpos) / 90000; 193 193 printf("marker-> new position \n"); 194 off64_t posn = playergetptspos(aktpts, pos, -1, 1, 0, 0, NULL);194 off64_t posn = playergetptspos(aktpts, pos, -1, 4, 0, 0, NULL); 195 195 if(posn < -1) 196 posn = playergetptspos(aktpts, pos - (posn *-1), -1, 1, 0, 0, NULL);196 posn = playergetptspos(aktpts, pos - (posn *-1), -1, 4, 0, 0, NULL); 197 197 if(posn < -1) 198 posn = playergetptspos(aktpts, pos - (posn *-2), -1, 1, 0, 0, NULL);198 posn = playergetptspos(aktpts, pos - (posn *-2), -1, 4, 0, 0, NULL); 199 199 if(posn < -1) 200 posn = playergetptspos(aktpts, pos - (posn *-3), -1, 1, 0, 0, NULL); 200 posn = playergetptspos(aktpts, pos - (posn *-3), -1, 4, 0, 0, NULL); 201 if(posn < -1) 202 posn = playergetptspos(aktpts, pos - (posn *-4), -1, 4, 0, 0, NULL); 201 203 if(posn > 0) 202 204 { -
titan/titan/player.h
r25485 r25489 1657 1657 { 1658 1658 tssize = 188; 1659 recbsize = tssize * 1024 ;1659 recbsize = tssize * 1024 * 10; 1660 1660 dupfd = open(dsn, O_RDONLY | O_LARGEFILE ); 1661 1661 } … … 1663 1663 { 1664 1664 tssize = snode->tssize; 1665 recbsize = snode->tssize * 1024 ;1665 recbsize = snode->tssize * 1024 * 10; 1666 1666 dupfd = open(snode->recname, O_RDONLY | O_LARGEFILE); 1667 1667 }
Note: See TracChangeset
for help on using the changeset viewer.