[Webkit-unassigned] [Bug 81905] New: [GTK] WebAudio channelSize issue

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 22 07:10:17 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=81905

           Summary: [GTK] WebAudio channelSize issue
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gouache95 at gmail.com


Source/WebCore/platform/audio/gstreamer/AudioFileReaderGStreamer.cpp:164
m_channelSize += GST_BUFFER_OFFSET_END(buffer) - GST_BUFFER_OFFSET(buffer);

in case of ogg file input without BOS information (e.g: http://labs.dinahmoe.com/ToneCraft/)
m_channelSize will be always '0'

so I think.. the code is needed to change like this,
m_channelSize += buffer->size * 0.25

i tested tonecraft page and succeed.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list