Changeset 110


Ignore:
Timestamp:
Jun 30, 2010, 6:45:00 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Smplayer: fixed a 1second delay

Location:
smplayer/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk/build_os2.cmd

    r105 r110  
    1010/* version 0.2.6 from 29.01.2010 Silvan (added more readmes) */
    1111/* version 0.2.7 from 29.04.2010 Silvan (added smplayer version for sed'ing readme's */
     12/* version 0.2.8 from 20.05.2010 Silvan (added version to zip) */
    1213
    1314/* init the version string (don't forget to change) */
    14 version = "0.2.7"
    15 version_date = "29.04.2010"
     15version = "0.2.8"
     16version_date = "20.05.2010"
    1617smplayer_version = "0.6.9"
    1718smplayer_build = "beta1"
     19internal_build = "0_6_9-b2"
    1820'@echo off'
    1921
     
    134136/* zip all up */
    135137        ok = directory(installDir)
    136         address cmd 'zip -r smplayer.zip *'
     138        cmdtorun = 'zip -r smplayer-' || internal_build || '.zip *'
     139        address cmd cmdtorun
    137140        ok = directory(rootdir)
    138141    end
  • smplayer/trunk/liesmich.os2

    r104 r110  
    9393* Qt4 dll
    9494
    95     ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (ersetzen Sie xx mit der aktuellsten version)
    96     falls die GA verfgbar ist, befindet sie sich im Unterverzeichniss 4.5.1-ga.
    97 
     95    unter http://svn.netlabs.org/qt4 finden Sie die n”tigen Angaben wo Sie Qt4 bekommen und wie man es installiert
     96 
    9897* MPlayer
    9998
     
    271270=========================
    272271
     2722010-06-30
     273  * fixed a nasty 1 second delay
     274
    2732752010-04-29
    274276  * updated to Qt4 4.6.2
  • smplayer/trunk/lisezmoi.os2

    r104 r110  
    113113* Qt4 dll
    114114
    115     ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (exchange xx with the most current available)
    116     if GA is available it's in it's own subdir 4.5.1-ga
     115    see http://svn.netlabs.org/qt4 for more information whats needed
    117116
    118117* MPlayer
     
    310309==========================
    311310
     3112010-06-30
     312  * fixed a nasty 1 second delay
     313
    3123142010-04-29
    313315  * updated to Qt4 4.6.2
  • smplayer/trunk/readme.os2

    r104 r110  
    8080* Qt4 dll
    8181
    82     ftp://ftp.netlabs.org/pub/qt4/qt-lib-4_5_1-xx.wpi (exchange xx with the most current available)
    83     if GA is available it's in it's own subdir 4.5.1-ga
     82    see http://svn.netlabs.org/qt4 for more information whats needed
    8483
    8584* MPlayer
     
    261260==========
    262261
     2622010-06-30
     263  * fixed a nasty 1 second delay
     264
    2632652010-04-29
    264266  * updated to Qt4 4.6.2
  • smplayer/trunk/src/mplayerprocess.cpp

    r93 r110  
    129129          return;
    130130
    131 // as things could hang when pipe communication is done direct here, i do a seperate thread for it */
     131// as things could hang when pipe communication is done direct here, i do a seperate thread for it
    132132    pipeThread = new PipeThread(text, hpipe);
    133133   
    134134    pipeThread->start();
    135135    while (!pipeThread->isRunning() && !pipeThread->isFinished()) {
    136        qDebug("we spleep");
     136       qDebug("we sleep");
    137137       DosSleep(10);
    138138    }
    139     if (!pipeThread->wait(2000)) {
     139// we wait for max 2 seconds for the thread to be ended (we to this with max 20 loops)
     140    int count = 0;
     141    while (!pipeThread->wait(100) && count < 20) {
     142       count ++;
     143    }
     144    if (count >= 20) {
    140145       pipeThread->terminate();
    141146       qDebug("pipe communication terminated");
     
    889894       return;
    890895
    891     qDebug("pipe connected");   
     896//    qDebug("pipe connected");   
    892897    DosWrite( hpipe, text.data(), strlen( text.data() ), &cbActual );
    893898
  • smplayer/trunk/src/svn_revision.h

    r93 r110  
    1 #define SVN_REVISION "SVN-rUNKNOWN"
     1#define SVN_REVISION "SVN-r92"
Note: See TracChangeset for help on using the changeset viewer.