Title: [229923] trunk/Source/ThirdParty/libwebrtc
Revision
229923
Author
you...@apple.com
Date
2018-03-23 15:01:43 -0700 (Fri, 23 Mar 2018)

Log Message

fix

Modified Paths


Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (229922 => 229923)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-03-23 21:35:34 UTC (rev 229922)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2018-03-23 22:01:43 UTC (rev 229923)
@@ -1,6 +1,15 @@
 2018-03-23  Youenn Fablet  <you...@apple.com>
 
         Add support for VCP encoder on MacOS and iOS
+        Build fix.
+
+        Unreviewed.
+
+        * Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp:
+
+2018-03-23  Youenn Fablet  <you...@apple.com>
+
+        Add support for VCP encoder on MacOS and iOS
         https://bugs.webkit.org/show_bug.cgi?id=183924
 
         Reviewed by Eric Carlson.

Modified: trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp (229922 => 229923)


--- trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp	2018-03-23 21:35:34 UTC (rev 229922)
+++ trunk/Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.cpp	2018-03-23 22:01:43 UTC (rev 229923)
@@ -27,7 +27,7 @@
 
 #if ENABLE_VCP_ENCODER
 
-#include "webrtc/base/logging.h"
+#include "rtc_base/logging.h"
 #import <dlfcn.h>
 #import <objc/runtime.h>
 
@@ -41,7 +41,7 @@
         dispatch_once(&once, ^{ \
             frameworkLibrary = dlopen("/System/Library/PrivateFrameworks/" #framework ".framework/" #framework, RTLD_NOW); \
             if (!isOptional && !frameworkLibrary) \
-                LOG(LS_ERROR) << "Cannot open framework: " << dlerror(); \
+                RTC_LOG(LS_ERROR) << "Cannot open framework: " << dlerror(); \
         }); \
         return frameworkLibrary; \
     } \
@@ -60,7 +60,7 @@
         dispatch_once(&once, ^{ \
             softLink##framework##functionName = (resultType (*) parameterDeclarations) dlsym(framework##Library(), #functionName); \
             if (!softLink##framework##functionName) \
-                LOG(LS_ERROR) << "Cannot find function ##functionName: " << dlerror(); \
+                RTC_LOG(LS_ERROR) << "Cannot find function ##functionName: " << dlerror(); \
         }); \
         return softLink##framework##functionName parameterNames; \
     } \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to