Title: [125043] trunk/Source/WebCore
- Revision
- 125043
- Author
- [email protected]
- Date
- 2012-08-08 10:07:45 -0700 (Wed, 08 Aug 2012)
Log Message
Unreviewed, build fix after r125041.
* platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
(StreamingClient::didReceiveResponse): Fix arguments order of the
notifyGstTagsOnPad() call.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (125042 => 125043)
--- trunk/Source/WebCore/ChangeLog 2012-08-08 17:00:54 UTC (rev 125042)
+++ trunk/Source/WebCore/ChangeLog 2012-08-08 17:07:45 UTC (rev 125043)
@@ -1,3 +1,11 @@
+2012-08-08 Philippe Normand <[email protected]>
+
+ Unreviewed, build fix after r125041.
+
+ * platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
+ (StreamingClient::didReceiveResponse): Fix arguments order of the
+ notifyGstTagsOnPad() call.
+
2012-08-08 Vineet Chaudhary <[email protected]>
Remove All Custom binding code for TypedArray.
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp (125042 => 125043)
--- trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp 2012-08-08 17:00:54 UTC (rev 125042)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp 2012-08-08 17:07:45 UTC (rev 125043)
@@ -853,7 +853,7 @@
gst_tag_list_free(tags);
#endif
else
- notifyGstTagsOnPad(GST_ELEMENT(m_src), tags, m_src->priv->srcpad);
+ notifyGstTagsOnPad(GST_ELEMENT(m_src), m_src->priv->srcpad, tags);
}
void StreamingClient::didReceiveData(ResourceHandle* handle, const char* data, int length, int encodedDataLength)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes