Re: [webkit-dev] Media elements meeting notes

2010-04-16 Thread Alpha Lam
2010年4月13日17:04 pnormand : > On Tue, 2010-04-13 at 14:52 -0700, Eric Uhrhane wrote: > > > New topic: Loader. > > > > Things that would be improved by unifying loading between media elements > and the > > rest of webkit: > > Unified resource security model. > > Make application cache work for m

Re: [webkit-dev] Parallel image decoders are up for review

2012-07-16 Thread Alpha Lam
Hi! This is great work! There's work in the Chromium port going on that has a similar goal as your parallel image decoding effort. There are some parts that we overlap that I think should be discussed to avoid clashes. Here's some background information of what we're doing. In Chromium port ther

Re: [webkit-dev] Parallel image decoders are up for review

2012-07-17 Thread Alpha Lam
2012/7/17 KwangYul Seo > Thank you letting me know this information! > > On Tue, Jul 17, 2012 at 5:41 AM, Alpha Lam wrote: > >> Hi! >> >> This is great work! >> > There's work in the Chromium port going on that has a similar goal as your >> pa

[webkit-dev] Status of multithreaded image decoding

2012-08-09 Thread Alpha Lam
Hi everyone! A few weeks ago some folks from company100.net have started a thread of multithreaded (parallel) image decoding in WebKit. We have worked together since then to get a better idea how to complete this feature. I would like to report on the progress and our plan. (The goal for Chromium

Re: [webkit-dev] Status of multithreaded image decoding

2012-08-10 Thread Alpha Lam
gle of the RenderBox intersect with viewport. Alpha 2012/8/10 James Robinson > > > On Thu, Aug 9, 2012 at 5:10 PM, Alpha Lam wrote: > >> Hi everyone! >> >> A few weeks ago some folks from company100.net have started a thread of >> multithreaded (parallel) ima

Re: [webkit-dev] image downscaling during decoding

2012-08-13 Thread Alpha Lam
I agree we should have a separate row-based downscaling phase. JPEGImageDecoder.cpp already supports downscaling with a given width and height, but it's using point sampling which has poor quality. It would be nice to have a callback based downscaling API that we can implement better algorithms.

Re: [webkit-dev] Status of multithreaded image decoding

2012-08-13 Thread Alpha Lam
That's a good point. I'm not sure but a safe bet would be after RenderView is layout'ed then iterate through images to start decoding. The same thing would be needed for scrolling too, as page scrolls need to iterate images in the viewport. Alpha 2012/8/13 Alpha (Hin-Chung) Lam > That's a good

Re: [webkit-dev] image downscaling during decoding

2012-08-13 Thread Alpha Lam
ity is up to the scaler implementation to decide. Alpha > > -Ilyes > > > nice to have a callback based downscaling API that we can implement > better > > algorithms. > > > On Mon, Aug 13, 2012 at 6:52 PM, Alpha Lam wrote: > > I agree we should have a separat

Re: [webkit-dev] Status of multithreaded image decoding

2012-08-13 Thread Alpha Lam
2012/8/13 KwangYul Seo > >> This approach is probably safe (as far as I know) but would have the >> downside of an extra pass over the whole render tree, or else overhead of >> maintaining an up-to-date list of rendered images; and it would happen very >> close to painting. >> >> I agree on getti