Title: [116675] trunk/Source/WebCore
Revision
116675
Author
tom...@google.com
Date
2012-05-10 12:17:21 -0700 (Thu, 10 May 2012)

Log Message

MediaStream API: Fix MediaHints parsing
https://bugs.webkit.org/show_bug.cgi?id=86098

Reviewed by Adam Barth.

Not currently testable. Working on a series of patches that will fix that.

* Modules/mediastream/PeerConnection00.cpp:
(WebCore::PeerConnection00::createMediaHints):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116674 => 116675)


--- trunk/Source/WebCore/ChangeLog	2012-05-10 19:11:17 UTC (rev 116674)
+++ trunk/Source/WebCore/ChangeLog	2012-05-10 19:17:21 UTC (rev 116675)
@@ -1,5 +1,17 @@
 2012-05-10  Tommy Widenflycht  <tom...@google.com>
 
+        MediaStream API: Fix MediaHints parsing
+        https://bugs.webkit.org/show_bug.cgi?id=86098
+
+        Reviewed by Adam Barth.
+
+        Not currently testable. Working on a series of patches that will fix that.
+
+        * Modules/mediastream/PeerConnection00.cpp:
+        (WebCore::PeerConnection00::createMediaHints):
+
+2012-05-10  Tommy Widenflycht  <tom...@google.com>
+
         [chromium] MediaStream API: Fix the ExtraData functionality in WebMediaStreamDescriptor
         https://bugs.webkit.org/show_bug.cgi?id=86087
 

Modified: trunk/Source/WebCore/Modules/mediastream/PeerConnection00.cpp (116674 => 116675)


--- trunk/Source/WebCore/Modules/mediastream/PeerConnection00.cpp	2012-05-10 19:11:17 UTC (rev 116674)
+++ trunk/Source/WebCore/Modules/mediastream/PeerConnection00.cpp	2012-05-10 19:17:21 UTC (rev 116675)
@@ -96,7 +96,7 @@
     bool audio = hasLocalAudioTrack();
     bool video = hasLocalVideoTrack();
     dictionary.get("has_audio", audio);
-    dictionary.get("has_video", audio);
+    dictionary.get("has_video", video);
     return MediaHints::create(audio, video);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to