<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GStreamer] Use RunLoop instead of GMainLoop in AudioFileReaderGStreamer"
   href="https://bugs.webkit.org/show_bug.cgi?id=151256#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GStreamer] Use RunLoop instead of GMainLoop in AudioFileReaderGStreamer"
   href="https://bugs.webkit.org/show_bug.cgi?id=151256">bug 151256</a>
              from <span class="vcard"><a class="email" href="mailto:zan&#64;falconsigh.net" title="Zan Dobersek &lt;zan&#64;falconsigh.net&gt;"> <span class="fn">Zan Dobersek</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=265476&amp;action=diff" name="attach_265476" title="Patch">attachment 265476</a> <a href="attachment.cgi?id=265476&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=265476&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=265476&amp;action=review</a>

<span class="quote">&gt; Source/WebCore/platform/audio/gstreamer/AudioFileReaderGStreamer.cpp:380
&gt; +    if (isMainThread()) {
&gt; +        RefPtr&lt;AudioBus&gt; returnValue;
&gt; +        auto threadID = createThread(&quot;AudioFileReader&quot;, [&amp;returnValue, filePath, mixToMono, sampleRate] {
&gt; +            returnValue = AudioFileReader(filePath).createBus(sampleRate, mixToMono);
&gt; +        });
&gt; +        waitForThreadCompletion(threadID);
&gt; +
&gt; +        return returnValue;
&gt; +    }</span >

Would RunLoop::run() not set up a nested main loop in case of running this in the main thread?

What about the cases where the bus is created in a non-main WebWorker thread that's also managed via RunLoop, wouldn't that set up the nested loop?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>