Ignore:
Timestamp:
May 23, 2013, 5:06:17 PM (12 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update vendor to 0.8.5'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/mplayerprocess.cpp

    r137 r140  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    164164#endif
    165165static QRegExp rx_cache("^Cache fill:.*");
     166static QRegExp rx_cache_empty("^Cache empty.*|^Cache not filling.*");
    166167static QRegExp rx_create_index("^Generating Index:.*");
    167168static QRegExp rx_play("^Starting playback...");
     
    467468#endif
    468469
     470                if (rx_cache_empty.indexIn(line) > -1) {
     471                        emit receivedCacheEmptyMessage(line);
     472                }
     473
    469474                // The following things are not sent when the file has started to play
    470475                // (or if sent, smplayer will ignore anyway...)
Note: See TracChangeset for help on using the changeset viewer.