Changeset 109163 in webkit


Ignore:
Timestamp:
Feb 28, 2012 3:58:57 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

No extra silence needed in multi-channels support layout test cases
https://bugs.webkit.org/show_bug.cgi?id=79752

Patch by Wei James <james.wei@intel.com> on 2012-02-28
Reviewed by Chris Rogers.

  • webaudio/audiobuffersource-multi-channels-expected.wav:
  • webaudio/audiobuffersource-multi-channels.html:
  • webaudio/resources/mix-testing.js:
  • webaudio/up-mixing-mono-51-expected.wav:
  • webaudio/up-mixing-mono-51.html:
  • webaudio/up-mixing-mono-stereo-expected.wav:
  • webaudio/up-mixing-mono-stereo.html:
  • webaudio/up-mixing-stereo-51-expected.wav:
  • webaudio/up-mixing-stereo-51.html:
Location:
trunk/LayoutTests
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r109156 r109163  
     12012-02-28  Wei James  <james.wei@intel.com>
     2
     3        No extra silence needed in multi-channels support layout test cases
     4        https://bugs.webkit.org/show_bug.cgi?id=79752
     5
     6        Reviewed by Chris Rogers.
     7
     8        * webaudio/audiobuffersource-multi-channels-expected.wav:
     9        * webaudio/audiobuffersource-multi-channels.html:
     10        * webaudio/resources/mix-testing.js:
     11        * webaudio/up-mixing-mono-51-expected.wav:
     12        * webaudio/up-mixing-mono-51.html:
     13        * webaudio/up-mixing-mono-stereo-expected.wav:
     14        * webaudio/up-mixing-mono-stereo.html:
     15        * webaudio/up-mixing-stereo-51-expected.wav:
     16        * webaudio/up-mixing-stereo-51.html:
     17
    1182012-02-28  Dean Jackson  <dino@apple.com>
    219
  • trunk/LayoutTests/webaudio/audiobuffersource-multi-channels.html

    r109076 r109163  
    2424    // Create offline audio context
    2525    var sampleRate = 44100.0;
    26     var context = new webkitAudioContext(6, sampleRate * renderLengthSeconds, sampleRate);
     26    var context = new webkitAudioContext(6, sampleRate * toneLengthSeconds, sampleRate);
    2727    var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 6);
    2828
  • trunk/LayoutTests/webaudio/resources/mix-testing.js

    r108604 r109163  
    1 var renderLengthSeconds = 2;
    21var toneLengthSeconds = 1;
    32
  • trunk/LayoutTests/webaudio/up-mixing-mono-51.html

    r108604 r109163  
    2424    // Create offline audio context
    2525    var sampleRate = 44100.0;
    26     var context = new webkitAudioContext(6, sampleRate * renderLengthSeconds, sampleRate);
     26    var context = new webkitAudioContext(6, sampleRate * toneLengthSeconds, sampleRate);
    2727    var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 1);
    2828
  • trunk/LayoutTests/webaudio/up-mixing-mono-stereo.html

    r108604 r109163  
    2424    // Create offline audio context
    2525    var sampleRate = 44100.0;
    26     var context = new webkitAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
     26    var context = new webkitAudioContext(2, sampleRate * toneLengthSeconds, sampleRate);
    2727    var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 1);
    2828
  • trunk/LayoutTests/webaudio/up-mixing-stereo-51.html

    r108604 r109163  
    2424    // Create offline audio context
    2525    var sampleRate = 44100.0;
    26     var context = new webkitAudioContext(6, sampleRate * renderLengthSeconds, sampleRate);
     26    var context = new webkitAudioContext(6, sampleRate * toneLengthSeconds, sampleRate);
    2727    var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 2);
    2828
Note: See TracChangeset for help on using the changeset viewer.