Changeset 831


Ignore:
Timestamp:
02/11/10 16:34:36 (3 years ago)
Author:
pablo
Message:
  • Fixes an issue with the hd plugin
Location:
trunk/fl5
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/fl5/src/com/longtailvideo/jwplayer/media/VideoMediaProvider.as

    r829 r831  
    2626                /** ID for the position interval. **/ 
    2727                protected var _positionInterval:Number; 
     28                /** Currently playing file. **/ 
     29                protected var _currentFile:String; 
    2830                /** Whether the buffer has filled **/ 
    2931                private var _bufferFull:Boolean; 
     
    8082                         
    8183                        if (!item  
    82                                         || item.file != itm.file  
     84                                        || _currentFile != itm.file  
    8385                                        || _stream.bytesLoaded == 0  
    8486                                        || (_stream.bytesLoaded < _stream.bytesTotal > 0))  
    8587                        { 
    8688                                media = _video; 
     89                                _currentFile = itm.file; 
    8790                                _stream.checkPolicyFile = true; 
    8891                                _stream.play(itm.file); 
  • trunk/fl5/src/com/longtailvideo/jwplayer/player/PlayerVersion.as

    r829 r831  
    33         
    44        public class PlayerVersion { 
    5                 protected static var _version:String = "5.1.829"; 
     5                protected static var _version:String = "5.1.831"; 
    66                 
    77                public static function get version():String { 
Note: See TracChangeset for help on using the changeset viewer.