Title: [154694] trunk/Source/WebCore
Revision
154694
Author
[email protected]
Date
2013-08-27 09:02:03 -0700 (Tue, 27 Aug 2013)

Log Message

[Windows] Correct method call for characteristic update.

Reviewed by Eric Carlson.

* platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
(WebCore::MediaPlayerPrivateAVFoundationCF::tracksChanged):
[Windows] Correct method call (should have been "characteristicsChanged", not
"player()->characteristicChanged()"

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154693 => 154694)


--- trunk/Source/WebCore/ChangeLog	2013-08-27 15:55:21 UTC (rev 154693)
+++ trunk/Source/WebCore/ChangeLog	2013-08-27 16:02:03 UTC (rev 154694)
@@ -1,3 +1,14 @@
+2013-08-27  Brent Fulgham  <[email protected]>
+
+        [Windows] Correct method call for characteristic update.
+
+        Reviewed by Eric Carlson.
+
+        * platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
+        (WebCore::MediaPlayerPrivateAVFoundationCF::tracksChanged):
+        [Windows] Correct method call (should have been "characteristicsChanged", not
+        "player()->characteristicChanged()"
+
 2013-08-26  Brent Fulgham  <[email protected]>
 
         [Windows] some track language tags are not recognized

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp (154693 => 154694)


--- trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp	2013-08-27 15:55:21 UTC (rev 154693)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp	2013-08-27 16:02:03 UTC (rev 154694)
@@ -925,7 +925,7 @@
     sizeChanged();
 
     if (primaryAudioTrackLanguage != languageOfPrimaryAudioTrack())
-        player()->characteristicChanged();
+        characteristicsChanged();
 
     setDelayCharacteristicsChangedNotification(false);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to