Ignore:
Timestamp:
09/06/10 15:56:06 (3 years ago)
Author:
pablo
Message:
  • Addresses a number of "sound" MediaProvider issues, including 928, 976, 982 and 1012. These tickets mostly relate to audio files with no content-length headers, or live audio streams.
  • Fixes issue with HTTP MediaProvider and the "streamer" option (984)
  • Only dispatch "JWPLAYER_MEDIA_LOADED" event for HTTP mediaprovider on item's first load.
  • Fixes issue with start & duration introduced in last check-in
  • More user-friendly error messages for HTTP status errors (1024)
  • Fixes an error with playlist roll-over states
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/fl5/src/com/longtailvideo/jwplayer/model/PlaylistItem.as

    r1257 r1267  
    162162                public function set start(s:*):void {  
    163163                        _start = Strings.seconds(String(s)); 
    164                         if (_start > _duration > 0) { 
     164                        if (_start > _duration && _duration > 0) { 
    165165                                _duration += _start; 
    166166                        } 
     
    170170                public function set duration(d:*):void {  
    171171                        _duration = Strings.seconds(String(d)); 
    172                         if (_start > _duration > 0) { 
     172                        if (_start > _duration && _duration > 0) { 
    173173                                _duration += _start; 
    174174                        } 
Note: See TracChangeset for help on using the changeset viewer.