diff options
author | enal@chromium.org <enal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 21:51:27 +0000 |
---|---|---|
committer | enal@chromium.org <enal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-15 21:51:27 +0000 |
commit | 06e639cdc5cf9b7d3e97c7d7c57920b56b4b6e17 (patch) | |
tree | 048f6ff41defac63e23924bc88b16a6fb439ed4b /webkit | |
parent | d466b8a0b44ef89c81fa4ede86de1b488b8ec07d (diff) | |
download | chromium_src-06e639cdc5cf9b7d3e97c7d7c57920b56b4b6e17.zip chromium_src-06e639cdc5cf9b7d3e97c7d7c57920b56b4b6e17.tar.gz chromium_src-06e639cdc5cf9b7d3e97c7d7c57920b56b4b6e17.tar.bz2 |
Fix problem when 'ended' event was fired before stream really ended.
That caused impression that rewind does not work. With that
change small JS program
var a = new Audio("file:///home/enal/temp/click2/click2.wav");
var num_played = 0;
a.addEventListener('canplaythrough', function() {
a.play();
});
a.addEventListener('ended', function() {
num_played ++;
if (num_played < 10) {
a.currentTime = 0;
a.play();
}
});
works correctly, you hear 10 clicks one after another, and it takes
~1.5 seconds to play all 10 sounds (one click is 146ms). Current
Chrome plays only beginnings of the first 9 clicks and then entire
10th click -- 'ended' event fires too early, so rewind stops audio
playback for all clicks but last one.
With that fix you can easily create pool of audio objects -- on 'ended'
event just add audio object to the pool.
Fix consists of 3 parts:
1) For low-latency code path pass entire "audio state" object to the renderer
process. That allows renderer take into account number of pending bytes
in the buffer.
2) When using low-latency code path renderer not only fills the buffer with
data, but also writes length of data into first word of the buffer. That
allows host process to pass correct byte counts to renderer.
3) Renderer now keeps track of the earliest time playback can end based on the
number of rendered bytes, and will not call 'ended' callback till that time.
BUG=http://code.google.com/p/chromium/issues/detail?id=78992
http://codereview.chromium.org/7328030
Review URL: http://codereview.chromium.org/7328030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92749 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/webmediaplayer_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webmediaplayer_impl.cc b/webkit/glue/webmediaplayer_impl.cc index acc44bc..4958dc2 100644 --- a/webkit/glue/webmediaplayer_impl.cc +++ b/webkit/glue/webmediaplayer_impl.cc @@ -514,9 +514,9 @@ void WebMediaPlayerImpl::setVisible(bool visible) { } #define COMPILE_ASSERT_MATCHING_ENUM(webkit_name, chromium_name) \ - COMPILE_ASSERT(int(WebKit::WebMediaPlayer::webkit_name) == \ - int(media::chromium_name), \ - mismatching_enums) + COMPILE_ASSERT(static_cast<int>(WebKit::WebMediaPlayer::webkit_name) == \ + static_cast<int>(media::chromium_name), \ + mismatching_enums) COMPILE_ASSERT_MATCHING_ENUM(None, NONE); COMPILE_ASSERT_MATCHING_ENUM(MetaData, METADATA); COMPILE_ASSERT_MATCHING_ENUM(Auto, AUTO); |