Changeset 128964 in webkit


Ignore:
Timestamp:
Sep 18, 2012 9:21:50 PM (12 years ago)
Author:
eric.carlson@apple.com
Message:

Check settings before registering AVFoundation media engine.
https://bugs.webkit.org/show_bug.cgi?id=97048
<rdar://problem/12313594>

Reviewed by Dan Bernstein.

Fix the bug introduced in r122676.

  • platform/graphics/MediaPlayer.cpp:

(WebCore::installedMediaEngines): Uncomment the call to check AVFoundation settings.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r128963 r128964  
     12012-09-18  Eric Carlson  <eric.carlson@apple.com>
     2
     3        Check settings before registering AVFoundation media engine.
     4        https://bugs.webkit.org/show_bug.cgi?id=97048
     5        <rdar://problem/12313594>
     6
     7        Reviewed by Dan Bernstein.
     8
     9        Fix the bug introduced in r122676.
     10
     11        * platform/graphics/MediaPlayer.cpp:
     12        (WebCore::installedMediaEngines): Uncomment the call to check AVFoundation settings.
     13
    1142012-09-18  Sailesh Agrawal  <sail@chromium.org>
    215
  • trunk/Source/WebCore/platform/graphics/MediaPlayer.cpp

    r128570 r128964  
    211211
    212212#if USE(AVFOUNDATION)
    213         if (1 /* @@Settings::isAVFoundationEnabled() @@ */) {
     213        if (Settings::isAVFoundationEnabled()) {
    214214#if PLATFORM(MAC)
    215215            MediaPlayerPrivateAVFoundationObjC::registerMediaEngine(addMediaEngine);
Note: See TracChangeset for help on using the changeset viewer.