Closed Bug 773469 Opened 12 years ago Closed 12 years ago

OMTC: Remove unnecessary layer transactions when using async-video

Categories

(Core :: Graphics: Layers, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED

People

(Reporter: nical, Assigned: nical)

References

Details

Attachments

(1 file, 1 obsolete file)

Async-video (see bug 598868) allows ImageContainers to forward frames directly to the compositor thread/process, without using the main thread. The ImageBridge protocol only needs one transaction at the beginning in order to pass to the ShadowImageLayer and ID corresponding to the image stream.

Currently, while playing a video we keep triggering layer transactions continuously, which is not useful since the video frames are not forwarded through these transactions.

We should remove these layer transactions to reduce unnecessary main-thread activity.
I started working on this and then switched back to working on bug 580784.

For this bug I tried several things:
First I tried to have VideoFrameContainer::RenderVideoFrame return true if it needs invalidation and false otherwise, and pass this argument along with the tasks that are dispatched to the main thread (and that will eventually call invalidate), mostly adding a parameter to UpdatePlaybackPosition and nsBuiltinDecoder::PlaybackPositionChanged, but this is somewhat awkward because PlaybackPositionChanged is overloaded by the different decoder implementations, and it did not really make sens that they have to care about "bool shoudlInvalidate".
I also tried a few other things involving the state machine to handle decicing when to invalidate, but it was not very good because it make more sense that the VideoFrameContainer handles that.

I ended up simply storing a boolean in the VideoFrameContainer telling whether or not we should invalidate when Invalidate is invoked. It is initialized to true and then flipped to false after the first call to Invalidate.

The basic idea is that we still want to invalidate sometimes, because the layer will not be created if we don't invalidate at least once. There will probably be other cases where we want to invalidate, I'm not really sure. So this version of the patch simply invalidates only once, which is enough to build the layer after what the ImageBridge protocol takes care of triggering compositing.

this is not a final solution, i barely tested it, but it looks like the simplest way to solve the problem even though it's likely that we will need something a bit more complex to decide when to invalidate when we use async-video.

It would probably be a good thing to rename VideoFrameContainer::Invalidate() into VideoFrameContainer::MaybeInvalidate() to make it clearer that the VideoFrameContainer actually decides whether or not we need to invalidate.
Assignee: nobody → nsilva
Attachment #644569 - Flags: feedback?
this looks like the right approach.
I am looking for cases where we need to rebuild the layers without rebuilding the nsHTMLMediaElement (in chich case I need to make sure we Invalidate at least once to pass the image container ID to the ShadowImageLayer through a layer transaction). Any ideas?
The nsHTMLMediaElement's ImageContainer never changes so you should be fine as long as there's a layer transaction to set things up the first time.

BTW you should implement ScaleMode SCALE_PRESERVE_ASPECT_RATIO_CONTAIN (see ImageLayers.h) to ensure that if the image size or intrinsic size change asynchronously, we keep scaling the image to fit the video frame in the right way. I'm not sure how to construct a testcase where the video size changes halfway through, though.
And you might want to refer to bug 754542, where we discussed how ImageLayer's scaling API should evolve.
Attachment #644569 - Attachment is obsolete: true
Attachment #644569 - Flags: feedback?
Attachment #650556 - Flags: review?
Attachment #650556 - Flags: review? → review?(roc)
Comment on attachment 650556 [details] [diff] [review]
Don't always call Invalidate when using async-video

Review of attachment 650556 [details] [diff] [review]:
-----------------------------------------------------------------

::: content/media/VideoFrameContainer.cpp
@@ +51,5 @@
>    NS_ASSERTION(NS_IsMainThread(), "Must call on main thread");
> +
> +  if (!mNeedInvalidation) {
> +    return;
> +  } else if (mImageContainer && mImageContainer->IsAsync()) {

Don't put else after a return. Just start the new if as the next statement.
Attachment #650556 - Flags: review?(roc) → review+
Whiteboard: [leave open]
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [leave open]
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: