Develop and Download Open Source Software

Browse Subversion Repository

Diff of /NNDDv2/trunk/src/org/mineap/nndd/player/PlayerController.as

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 576 by mineap, Sat May 28 02:28:50 2011 UTC revision 580 by mineap, Sat May 28 03:51:27 2011 UTC
# Line 1810  package org.mineap.nndd.player Line 1810  package org.mineap.nndd.player
1810                                                                                    
1811                                          // 100%読み込みしたはずなのに読み込み済みバイト数が異常に少ない。                                          // 100%読み込みしたはずなのに読み込み済みバイト数が異常に少ない。
1812                                          if(this.bytesLoaded <= 64){                                          if(this.bytesLoaded <= 64){
1813                                                  if(this.streamingRetryCount <= 1 ){                                                  
1814                                                    var maxCount:int = 1;
1815                                                    var confValue:String = ConfigManager.getInstance().getItem("streamingRetryMaxCount");
1816                                                    if(confValue == null)
1817                                                    {
1818                                                            ConfigManager.getInstance().removeItem("streamingRetryMaxCount");
1819                                                            ConfigManager.getInstance().setItem("streamingRetryMaxCount", maxCount);
1820                                                    }
1821                                                    else
1822                                                    {
1823                                                            maxCount = int(confValue);
1824                                                    }
1825                                                    
1826                                                    if(this.streamingRetryCount <= maxCount ){
1827                                                          // 再生し直す                                                          // 再生し直す
1828                                                          this.streamingRetryCount++;                                                          this.streamingRetryCount++;
1829                                                          var timeStr:String = String(int(10000*this.streamingRetryCount / 1000));                                                          var timeStr:String = String(int(10000*this.streamingRetryCount / 1000));

Legend:
Removed from v.576  
changed lines
  Added in v.580

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26