⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 268732 in webkit


Ignore:
Timestamp:
Oct 20, 2020, 8:48:13 AM (6 years ago)
Author:
Philippe Normand
Message:

Unreviewed, temporary workaround for bug #217959

  • platform/audio/gstreamer/AudioDestinationGStreamer.cpp:

(WebCore::maximumNumberOfOutputChannels): Return a hard-coded value until the device monitor issue is fixed.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r268730 r268732  
     12020-10-20  Philippe Normand  <pnormand@igalia.com>
     2
     3        Unreviewed, temporary workaround for bug #217959
     4
     5        * platform/audio/gstreamer/AudioDestinationGStreamer.cpp:
     6        (WebCore::maximumNumberOfOutputChannels): Return a hard-coded value until the device monitor issue is fixed.
     7
    182020-10-20  Devin Rousso  <drousso@apple.com>
    29
  • trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp

    r268727 r268732  
    5252{
    5353    initializeDebugCategory();
     54
     55    // FIXME: https://bugs.webkit.org/show_bug.cgi?id=217959
     56    return 2;
    5457
    5558    static int count = 0;
Note: See TracChangeset for help on using the changeset viewer.