Changeset 25489


Ignore:
Timestamp:
01/06/14 19:50:18 (9 years ago)
Author:
gost
Message:

[titan] marker position fix

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/marker.h

    r25488 r25489  
    192192                atime = (aktpts - startpos) / 90000;
    193193                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);
    195195                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);
    197197                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);
    199199                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);
    201203                if(posn > 0)
    202204                        {
  • titan/titan/player.h

    r25485 r25489  
    16571657        {
    16581658                tssize = 188;
    1659                 recbsize = tssize * 1024;
     1659                recbsize = tssize * 1024 * 10;
    16601660                dupfd = open(dsn, O_RDONLY | O_LARGEFILE );
    16611661        }
     
    16631663        {
    16641664                tssize = snode->tssize;
    1665                 recbsize = snode->tssize * 1024;
     1665                recbsize = snode->tssize * 1024 * 10;
    16661666                dupfd = open(snode->recname, O_RDONLY | O_LARGEFILE);
    16671667        }
Note: See TracChangeset for help on using the changeset viewer.