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

Changeset 157560 in webkit


Ignore:
Timestamp:
Oct 17, 2013, 12:22:00 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[GStreamer] Too many arguments for format in WebKitWebAudioSourceGStreamer.cpp
https://bugs.webkit.org/show_bug.cgi?id=122932

Patch by Brendan Long <b.long@cablelabs.com> on 2013-10-17
Reviewed by Philippe Normand.

No new tests because this just fixes a build warning.

  • platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp:

(webKitWebAudioSrcLoop): Add another %s for the second part of the pad name.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r157550 r157560  
     12013-10-17  Brendan Long  <b.long@cablelabs.com>
     2
     3        [GStreamer] Too many arguments for format in WebKitWebAudioSourceGStreamer.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=122932
     5
     6        Reviewed by Philippe Normand.
     7
     8        No new tests because this just fixes a build warning.
     9
     10        * platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp:
     11        (webKitWebAudioSrcLoop): Add another %s for the second part of the pad name.
     12
    1132013-10-16  Tim Horton  <timothy_horton@apple.com>
    214
  • trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp

    r152832 r157560  
    390390        GstFlowReturn ret = gst_pad_chain(pad, channelBuffer);
    391391        if (ret != GST_FLOW_OK)
    392             GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to push buffer on %s", GST_DEBUG_PAD_NAME(pad)));
     392            GST_ELEMENT_ERROR(src, CORE, PAD, ("Internal WebAudioSrc error"), ("Failed to push buffer on %s:%s", GST_DEBUG_PAD_NAME(pad)));
    393393    }
    394394
Note: See TracChangeset for help on using the changeset viewer.