Title: [210977] trunk/Source/ThirdParty/libwebrtc
Revision
210977
Author
[email protected]
Date
2017-01-20 13:25:08 -0800 (Fri, 20 Jan 2017)

Log Message

[WebRTC] Update libwertc AudioRtpSender::SetAudioSend
https://bugs.webkit.org/show_bug.cgi?id=167243

Patch by Youenn Fablet <[email protected]> on 2017-01-20
Reviewed by Alex Christensen.

Introducing  WEBRTC_WEBKIT_BUILD macro to match existing WEBRTC_CHROMIUM_BUILD.
WEBRTC_WEBKIT_BUILD is defined by current WebKit libwebrtc build system.

* Source/webrtc/api/rtpsender.cc:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (210976 => 210977)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2017-01-20 21:04:24 UTC (rev 210976)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2017-01-20 21:25:08 UTC (rev 210977)
@@ -1,5 +1,17 @@
 2017-01-20  Youenn Fablet  <[email protected]>
 
+        [WebRTC] Update libwertc AudioRtpSender::SetAudioSend
+        https://bugs.webkit.org/show_bug.cgi?id=167243
+
+        Reviewed by Alex Christensen.
+
+        Introducing  WEBRTC_WEBKIT_BUILD macro to match existing WEBRTC_CHROMIUM_BUILD.
+        WEBRTC_WEBKIT_BUILD is defined by current WebKit libwebrtc build system.
+
+        * Source/webrtc/api/rtpsender.cc:
+
+2017-01-20  Youenn Fablet  <[email protected]>
+
         [WebRTC] libwebrtc H.264 codec is using VTB only for IOS
         https://bugs.webkit.org/show_bug.cgi?id=167245
 

Modified: trunk/Source/ThirdParty/libwebrtc/Source/webrtc/api/rtpsender.cc (210976 => 210977)


--- trunk/Source/ThirdParty/libwebrtc/Source/webrtc/api/rtpsender.cc	2017-01-20 21:04:24 UTC (rev 210976)
+++ trunk/Source/ThirdParty/libwebrtc/Source/webrtc/api/rtpsender.cc	2017-01-20 21:25:08 UTC (rev 210977)
@@ -204,7 +204,7 @@
     return;
   }
   cricket::AudioOptions options;
-#if !defined(WEBRTC_CHROMIUM_BUILD)
+#if !defined(WEBRTC_CHROMIUM_BUILD) && !defined(WEBRTC_WEBKIT_BUILD)
   // TODO(tommi): Remove this hack when we move CreateAudioSource out of
   // PeerConnection.  This is a bit of a strange way to apply local audio
   // options since it is also applied to all streams/channels, local or remote.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to