Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara-flashplayer
mahara-flashplayer
Commits
37bc862e
Commit
37bc862e
authored
Sep 18, 2012
by
Anssi Piirainen
Browse files
Merge pull request #18 from flowplayer/danielr-core
- #615 dispatch begin if in paused mode too early.
parents
e4304d31
d3a22a9e
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
core/README.txt
View file @
37bc862e
...
...
@@ -7,6 +7,9 @@ Version history:
- #627 re-enable stagevideo state change listeners if stagevideo is available or detach the fullscreen events on first call.
- #9 when replaying from stopping, connection does not receive callbacks anymore.
- #15 fixes for #627, handle the display init on startup.
- #615 dispatch begin if in paused mode too early.
- #629 if start has been dispatched already prevent dispatching many begin events.
- #20 for the free player swap the logo with the stage video mask to display underneath not on top.
3.2.13
------
...
...
core/src/actionscript/org/flowplayer/controller/NetStreamControllingStreamProvider.as
View file @
37bc862e
...
...
@@ -754,7 +754,9 @@ package org.flowplayer.controller {
}
else
if
(
event
.
info
.
code
==
"NetStream.Buffer.Full"
)
{
dispatchPlayEvent
(
ClipEventType
.
BUFFER_FULL
)
;
}
else
if
(
event
.
info
.
code
==
"NetStream.Play.Start"
)
{
if
(
!
_paused
&&
canDispatchBegin
())
{
//#615 dispatch begin if in paused mode too early.
//#629 if start has been dispatched already prevent dispatching many begin events.
if
(
canDispatchBegin
()
&&
!
clip
.
startDispatched
)
{
log
.
debug
(
"dispatching onBegin"
)
;
clip
.
dispatchEvent
(
new
ClipEvent
(
ClipEventType
.
BEGIN
,
_pauseAfterStart
))
;
}
...
...
core/src/actionscript/org/flowplayer/view/Launcher.as
View file @
37bc862e
...
...
@@ -775,7 +775,12 @@ import org.flowplayer.model.DisplayPluginModel;
if
(
!
contains
(
_screenMask
)
)
{
//#508 stage video mask was being added to the top layer and hiding all children.
addChildAt
(
_screenMask
,
0
)
;
//addChildAt(_screenMask, _canvasLogo ? getChildIndex(_canvasLogo) + 1 : 1);
//#20 for the free player swap the logo with the stage video mask to display underneath not on top.
CONFIG
::
freeVersion
{
swapChildren
(
_screenMask
,
_canvasLogo
)
;
}
//addChildAt(_screenMask, _canvasLogo ? 1 : 0);
log
.
debug
(
"adding mask"
)
;
}
...
...
plugins/captions/build.xml
View file @
37bc862e
...
...
@@ -14,7 +14,7 @@
<property
name=
"plugin-binary-versioned"
value=
"${basename}-${version}.swf"
/>
<property
name=
"plugin-swc"
value=
"${basename}.swc"
/>
<property
name=
"plugin-main-class"
value=
"org/flowplayer/captions/Caption.as"
/>
<property
name=
"plugin-main-class"
value=
"org/flowplayer/captions/Caption
PluginFactory
.as"
/>
<target
name=
"release"
description=
"makes a release"
depends=
"build"
>
<copyrelease
targetdir=
"flowplayer.captions"
>
...
...
plugins/cluster/README.txt
View file @
37bc862e
...
...
@@ -3,6 +3,7 @@ Version history:
3.2.4
-----
- #601 dispatch resolver failure correctly.
- #15 add cache busting to the file being checked for availability to play back correctly once resolving has completed.
3.2.3
-----
...
...
plugins/cluster/src/actionscript/org/flowplayer/cluster/ClusterConnectionProvider.as
View file @
37bc862e
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment