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 723 by mineap, Tue Jan 3 07:11:29 2012 UTC revision 751 by mineap, Sat Feb 11 06:43:03 2012 UTC
# Line 1982  package org.mineap.nndd.player Line 1982  package org.mineap.nndd.player
1982                                          {                                          {
1983                                                  logManager.addLog("***動画のリピート(ローカル)***");                                                  logManager.addLog("***動画のリピート(ローカル)***");
1984                                                  this.stop();                                                  this.stop();
1985                                                    
1986                                                    var url:String = this.videoInfoView.getPlayListUrl(playingIndex);
1987                                                    var video:NNDDVideo = libraryManager.isExistByVideoId(LibraryUtil.getVideoKey(url));
1988                                                    if (video != null)
1989                                                    {
1990                                                            url = video.getDecodeUrl();
1991                                                    }
1992                                                    
1993                                                  playMovie(                                                  playMovie(
1994                                                                  this.videoInfoView.getPlayListUrl(playingIndex),                                                                  url,
1995                                                                  this.videoInfoView.playList,                                                                  this.videoInfoView.playList,
1996                                                                  playingIndex,                                                                  playingIndex,
1997                                                                  this.videoPlayer.title);                                                                  this.videoPlayer.title);
# Line 2026  package org.mineap.nndd.player Line 2034  package org.mineap.nndd.player
2034                                                  playingIndex = 0;                                                  playingIndex = 0;
2035                                                  if (this.videoPlayer.videoInfoView.isRepeatAll())                                                  if (this.videoPlayer.videoInfoView.isRepeatAll())
2036                                                  {                                                  {
2037                                                            var url:String = this.videoInfoView.getPlayListUrl(playingIndex);
2038                                                            var video:NNDDVideo = libraryManager.isExistByVideoId(LibraryUtil.getVideoKey(url));
2039                                                            if (video != null)
2040                                                            {
2041                                                                    url = video.getDecodeUrl();
2042                                                            }
2043                                                            
2044                                                          playMovie(                                                          playMovie(
2045                                                                          this.videoInfoView.getPlayListUrl(playingIndex),                                                                          url,
2046                                                                          this.videoInfoView.playList,                                                                          this.videoInfoView.playList,
2047                                                                          playingIndex,                                                                          playingIndex,
2048                                                                          PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));                                                                          PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
# Line 2037  package org.mineap.nndd.player Line 2052  package org.mineap.nndd.player
2052                                          {                                          {
2053                                                  /* プレイリストの次の項目へ */                                                  /* プレイリストの次の項目へ */
2054                                                  playingIndex++;                                                  playingIndex++;
2055                                                    
2056                                                    var url:String = this.videoInfoView.getPlayListUrl(playingIndex);
2057                                                    var video:NNDDVideo = libraryManager.isExistByVideoId(LibraryUtil.getVideoKey(url));
2058                                                    if (video != null)
2059                                                    {
2060                                                            url = video.getDecodeUrl();
2061                                                    }
2062                                                    
2063                                                  playMovie(                                                  playMovie(
2064                                                                  this.videoInfoView.getPlayListUrl(playingIndex),                                                                  url,
2065                                                                  this.videoInfoView.playList,                                                                  this.videoInfoView.playList,
2066                                                                  playingIndex,                                                                  playingIndex,
2067                                                                  PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));                                                                  PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));

Legend:
Removed from v.723  
changed lines
  Added in v.751

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