⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243873 in webkit


Ignore:
Timestamp:
Apr 4, 2019, 9:52:02 AM (7 years ago)
Author:
youenn@apple.com
Message:

Log the error if VideoProcessing library cannot be dlopen
https://bugs.webkit.org/show_bug.cgi?id=196609

Reviewed by Eric Carlson.

  • Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp:

(webrtc::initVideoProcessingVPModuleInitialize):

Location:
trunk/Source/ThirdParty/libwebrtc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r243850 r243873  
     12019-04-04  Youenn Fablet  <youenn@apple.com>
     2
     3        Log the error if VideoProcessing library cannot be dlopen
     4        https://bugs.webkit.org/show_bug.cgi?id=196609
     5
     6        Reviewed by Eric Carlson.
     7
     8        * Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp:
     9        (webrtc::initVideoProcessingVPModuleInitialize):
     10
    1112019-04-03  Youenn Fablet  <youenn@apple.com>
    212
  • trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp

    r243850 r243873  
    7474static void initVideoProcessingVPModuleInitialize()
    7575{
    76     auto* library = VideoProcessingLibrary();
     76
     77    auto* library = dlopen("/System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing", RTLD_NOW);
    7778    if (!library)
    7879        fprintf(stderr, "Cannot find VideoProcessingLibrary: %s\n", dlerror());
Note: See TracChangeset for help on using the changeset viewer.