[Laszlo-checkins] r14334 - in openlaszlo/branches/4.4: . lps/components/extensions/av
ptw@openlaszlo.org
ptw at openlaszlo.org
Fri Jul 17 05:31:04 PDT 2009
Author: ptw
Date: 2009-07-17 05:31:01 -0700 (Fri, 17 Jul 2009)
New Revision: 14334
Modified:
openlaszlo/branches/4.4/
openlaszlo/branches/4.4/lps/components/extensions/av/videoview.lzx
Log:
Merged revisions 14321 via svnmerge from
http://svn.openlaszlo.org/openlaszlo/trunk
.......
r14321 | max | 2009-07-14 19:10:35 -0400 (Tue, 14 Jul 2009) | 16 lines
Change 20090714-maxcarlson-Y by maxcarlson at Bank.local on 2009-07-14 11:29:42 PDT
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Fix videoviews for paused/single frame videos
Bugs Fixed: LPP-8293 - test-video.lzx: sound plays but no video appears (swf8 & swf9)
Technical Reviewer: sarah at ultrasaurus.com
QA Reviewer: rajubitter at me.com
Details: Move URL setting before playback setup to ensure the stream isn't reset by the call to mediastream._resetStream() in mediastream._updateUrl().
Tests: test/video/test-video.lzx shows paused video on the left. test/video/test-stream-video-sep.lzx pauses the video when 'set URL' buttons are clicked, and clicking 'play' causes the correct video to play.
.......
Property changes on: openlaszlo/branches/4.4
___________________________________________________________________
Name: svnmerge-integrated
- /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14109,14116,14124,14127,14129,14146-14156,14159,14165,14167-14171,14173-14206,14210-14215,14217-14290,14308
+ /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14109,14116,14124,14127,14129,14146-14156,14159,14165,14167-14171,14173-14206,14210-14215,14217-14290,14308,14321
Modified: openlaszlo/branches/4.4/lps/components/extensions/av/videoview.lzx
===================================================================
--- openlaszlo/branches/4.4/lps/components/extensions/av/videoview.lzx 2009-07-17 08:00:08 UTC (rev 14333)
+++ openlaszlo/branches/4.4/lps/components/extensions/av/videoview.lzx 2009-07-17 12:31:01 UTC (rev 14334)
@@ -169,6 +169,9 @@
this._urldel = new LzDelegate( this, "_setPlayStream",
this.stream, "onplaying")
+ if (this.url) {
+ this._updateStreamUrl();
+ }
if (this.stream.playing || this.stream.type == 'http') {
// show poster frame now for http streams
if (!this.stream.playing && this.starttime != -1) {
@@ -176,9 +179,6 @@
}
this._setPlayStream();
}
- if (this.url) {
- this._updateStreamUrl();
- }
if (this.cam) {
this.stream.setAttribute('cam', this.cam);
More information about the Laszlo-checkins
mailing list