Closed Bug 1421091 Opened 7 years ago Closed 7 years ago

setValueCurveAtTime doesn't accept sequence<float>

Categories

(Core :: Web Audio, defect, P3)

defect

Tracking

()

RESOLVED FIXED
mozilla63
Tracking Status
firefox63 --- fixed

People

(Reporter: toy.raymond, Assigned: padenot)

References

Details

(Keywords: dev-doc-complete)

Attachments

(3 files, 2 obsolete files)

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.59 Safari/537.36 Steps to reproduce: Consider this (using nightly build 59.0a1) c = new AudioContext(); n = new GainNode(c); n.gain.setValueCurveAtTime([3,4], 1, 1); Actual results: This produces an error: TypeError: Argument 1 of AudioParam.setValueCurveAtTime does not implement interface Float32Array Expected results: This should have worked without throwing an error. Curiously, this works: n.gain.setValueCurveAtTime(Float32Array.from([3,4]), 1, 1) It seems the error message is wrong as well? The original interface for setValueAtTime only accepted Float32Array's but was extended a while ago to accept sequence<float>
Component: Untriaged → Web Audio
Product: Firefox → Core
It takes some time for us to become spec compliant. It seems that the old interface has not been updated.
Status: UNCONFIRMED → NEW
Rank: 25
Ever confirmed: true
Priority: -- → P3
No worries. Just wanted to report the issue so someone might be able to fix it someday.
Baku, this is tested in web-platform-tests, but https://bugzilla.mozilla.org/show_bug.cgi?id=1472095#c4 needs to be addressed so that the behaviour is really tested properly.
Flags: needinfo?(amarchesini)
Assignee: nobody → padenot
Attachment #8989458 - Flags: review?(amarchesini) → review+
we should probably update some of our dom/media/tests.
Flags: needinfo?(amarchesini)
Comment on attachment 8989458 [details] Bug 1421091 - Update wpt expectations. https://reviewboard.mozilla.org/r/254512/#review261348 Doesn't this need c++-side changed too? I would expect this to not compile...
Yeah ok so mercurial hanged when I pushed the actual commit with all the changes, I found: > remote: Connection to reviewboard-hg.mozilla.org closed by remote host. at the bottom of my terminal this morning.
Comment on attachment 8989458 [details] Bug 1421091 - Update wpt expectations. https://reviewboard.mozilla.org/r/254512/#review261700 c++ changes look good, thanks.
Attachment #8989458 - Flags: review+
Comment on attachment 8991603 [details] Bug 1421091 - Fix duplicate name error. https://reviewboard.mozilla.org/r/256532/#review263606 ::: commit-message-2bc14:1 (Diff revision 1) > +Bug 1421091 - Fix duplicate name error. r?karlt > + > +This makes WPT error out, because the if no name is passed in, it's synthetized > +from the result, and the result is the same in those cases. It's unclear to me > +why it wasn't an error before, but it's erroring out now and the fix is simple. I assume you meant to push this to bug 1472095 because https://reviewboard.mozilla.org/r/254224/diff/2 is the reason why this is required. Please either label with that bug number, so that "Fix duplicate name error" makes sense, or perhaps better change the commit message to something like "test exception type thrown by createDelay() and provide subtest names", or both. These changes to give the test an explicit name are good, thanks, regardless of the issue that caused the duplicate names. i.e. this fixes part of https://github.com/web-platform-tests/wpt/issues/10201 I recommend this in .hgrc, so that I don't overwrite the wrong changesets: [reviewboard] autopublish = False ::: testing/web-platform/tests/webaudio/the-audio-api/the-delaynode-interface/delaynode-maxdelaylimit.html:42 (Diff revision 1) > - should(() => context.createDelay(-1)).throw(); > - should(() => context.createDelay(NaN)).throw(); > - ; > + should(() => context.createDelay(0)).throw("NotSupportedError", > + "Delay length cannot be 0"); > + should(() => context.createDelay(-1)).throw("NotSupportedError", > + "Delay length cannot be negative"); > + should(() => context.createDelay(NaN)).throw(TypeError, > + "Delay lenght cannot be a NaN"); s/lenght/length/
Attachment #8991603 - Flags: review?(karlt) → review+
Right, that's what I missed, thanks.
Pushed by paul@paul.cx: https://hg.mozilla.org/integration/mozilla-inbound/rev/9d34c85e0ec1 Update AudioParam.setValueCurveAtTime to take sequence<float> instead of a Float32Array. r=baku,karlt https://hg.mozilla.org/integration/mozilla-inbound/rev/8c22cb391d72 Update wpt expectations. r=karlt
Pushed by paul@paul.cx: https://hg.mozilla.org/integration/mozilla-inbound/rev/5d0cce417e56 Remove a bit from a gtest that is tested directly in the bindings, on a CLOSED TREE.
Flags: needinfo?(padenot)
Flags: needinfo?(padenot)
Attachment #8991603 - Attachment is obsolete: true
Comment on attachment 8991899 [details] Bug 1421091 - Update AudioParam.setValueCurveAtTime to take sequence<float> instead of a Float32Array. https://reviewboard.mozilla.org/r/256816/#review263664
Attachment #8991899 - Flags: review?(amarchesini) → review+
Comment on attachment 8991900 [details] Bug 1421091 - Remove a bit from a gtest that is tested directly in the bindings. https://reviewboard.mozilla.org/r/256818/#review263666
Attachment #8991900 - Flags: review?(jyavenard) → review+
Attachment #8991901 - Attachment is obsolete: true
Attachment #8991901 - Flags: review?(jyavenard)
Pushed by paul@paul.cx: https://hg.mozilla.org/integration/autoland/rev/37d172c987e6 Update AudioParam.setValueCurveAtTime to take sequence<float> instead of a Float32Array. r=baku https://hg.mozilla.org/integration/autoland/rev/65ca98d405c8 Update wpt expectations. r=baku,karlt https://hg.mozilla.org/integration/autoland/rev/e1b695949d28 Remove a bit from a gtest that is tested directly in the bindings. r=jya
Comment on attachment 8991899 [details] Bug 1421091 - Update AudioParam.setValueCurveAtTime to take sequence<float> instead of a Float32Array. https://reviewboard.mozilla.org/r/256816/#review263808
Attachment #8991899 - Flags: review?(karlt) → review+
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: