Changeset 243873 in webkit
- Timestamp:
- Apr 4, 2019, 9:52:02 AM (7 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r243850 r243873 1 2019-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 1 11 2019-04-03 Youenn Fablet <youenn@apple.com> 2 12 -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp
r243850 r243873 74 74 static void initVideoProcessingVPModuleInitialize() 75 75 { 76 auto* library = VideoProcessingLibrary(); 76 77 auto* library = dlopen("/System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing", RTLD_NOW); 77 78 if (!library) 78 79 fprintf(stderr, "Cannot find VideoProcessingLibrary: %s\n", dlerror());
Note:
See TracChangeset
for help on using the changeset viewer.