Changeset 157560 in webkit
- Timestamp:
- Oct 17, 2013, 12:22:00 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r157550 r157560 1 2013-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 1 13 2013-10-16 Tim Horton <timothy_horton@apple.com> 2 14 -
trunk/Source/WebCore/platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp
r152832 r157560 390 390 GstFlowReturn ret = gst_pad_chain(pad, channelBuffer); 391 391 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))); 393 393 } 394 394
Note:
See TracChangeset
for help on using the changeset viewer.