Develop and Download Open Source Software
Login
Create Account
Help
MY OSDN
Find Software
Magazine
Develop
Pastebin
Software
People
PersonalForge
Magazine
Wiki
OSDN
>
Find Software
>
NNDD - ニコ動専用ブラウザ
NNDD - ニコ動専用ブラウザ
Summary
Project Summary
Developer Dashboard
Project Reviews
Web Page
Developers
List of RSS Feeds
Statistics
History
Image Gallery
Search Keywords
News
Listed News
Help
Downloads
List of Releases
Help
Source Code
Guide
Browse SVN
Browse Git: nndd
Help
Wiki
FrontPage
Title index
Recent changes
Wiki Search
Help
Forums
List of Forums
Open Discussion (1)
Help (1)
Developers (1)
Help
Mailing Lists
list of ML
Help
Ticket
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Help
Browse Subversion Repository
/
[nndd]
/
NNDDv2
/
trunk
/
src
/
org
/
mineap
/
nndd
/
player
/
PlayerController.as
Diff of /NNDDv2/trunk/src/org/mineap/nndd/player/PlayerController.as
Parent Directory
|
Revision Log
|
Patch
revision
785
by
mineap
, Sat Apr 7 13:03:55 2012 UTC
revision
786
by
mineap
, Sat Apr 7 13:43:13 2012 UTC
#
Line 4464
package org.mineap.nndd.player
Line 4464
package org.mineap.nndd.player
4464
if(!isPlayListingPlay){
if(!isPlayListingPlay){
4465
// 通常再生中
// 通常再生中
4466
playMovie(nnddVideo.getDecodeUrl());
playMovie(nnddVideo.getDecodeUrl());
4467
}else{
}else if (this.videoInfoView.getPlayList().length > 0){
4468
// プレイリスト再生中
// プレイリスト再生中
4469
if(playingIndex >= this.videoInfoView.getPlayList().length-1){
if(playingIndex >= this.videoInfoView.getPlayList().length-1){
4470
playingIndex = this.videoInfoView.getPlayList().length-1;
playingIndex = this.videoInfoView.getPlayList().length-1;
#
Line 4477
package org.mineap.nndd.player
Line 4477
package org.mineap.nndd.player
4477
playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,
playMovie(this.videoInfoView.getPlayListUrl(playingIndex), this.videoInfoView.playList,
4478
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4479
}
}
4480
}else
4481
{
4482
isPlayListingPlay = false;
4483
}
}
4484
}
}
4485
}
}
#
Line 4487
package org.mineap.nndd.player
Line 4490
package org.mineap.nndd.player
4490
*/
*/
4491
public function next():void
public function next():void
4492
{
{
4493
if (isPlayListingPlay)
if (isPlayListingPlay && this.videoInfoView.getPlayList().length > 0)
4494
{
{
4495
// プレイリスト再生中
// プレイリスト再生中
4496
if(playingIndex >= this.videoInfoView.getPlayList().length-1){
if(playingIndex >= this.videoInfoView.getPlayList().length-1){
#
Line 4502
package org.mineap.nndd.player
Line 4505
package org.mineap.nndd.player
4505
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
playingIndex, PathMaker.getVideoName(this.videoInfoView.getPlayListUrl(playingIndex)));
4506
}
}
4507
}
}
4508
else
4509
{
4510
isPlayListingPlay = false;
4511
}
4512
}
}
4513
4514
/**
/**
Colored Diff
Long Colored Diff
Full Colored Diff
Unidiff
Context Diff
Side by Side
Legend:
Removed from v.785
changed lines
Added in v.786
Back to OSDN
">
Back to OSDN
ViewVC Help
Powered by
ViewVC 1.1.26