[Bug 20327] Continuous splice flag

https://www.w3.org/Bugs/Public/show_bug.cgi?id=20327

--- Comment #7 from Aaron Colwell <acolwell@chromium.org> ---
A boolean flag doesn't appear to convey what you really want here. It seems
that something like this would be better.

enum AudioCrossfadeType {
    "none",
    "linear",
    "equal-power"
};

attribute AudioCrossfadeType audioCrossfadeType;

Everytime an append causes a splice, the value of this attribute is stored with
the splice point. This would allow different values to be used at different
splice points. Implementations may throw an exception if an unsupported
crossfade type is specified.

I'm still not totally sold yet, but I think this proposal is better at
conveying what you are trying to accomplish.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 28 December 2012 22:31:47 UTC