Changeset 212413 in webkit
- Timestamp:
- Feb 15, 2017, 4:54:49 PM (8 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r212401 r212413 1 2017-02-15 Alex Christensen <achristensen@webkit.org> 2 3 Fix ASAN build after r212401 4 https://bugs.webkit.org/show_bug.cgi?id=168398 5 6 * Source/webrtc/media/engine/webrtcvideocapturer.cc: 7 * libwebrtc.xcodeproj/project.pbxproj: 8 1 9 2017-02-15 Alex Christensen <achristensen@webkit.org> 2 10 -
trunk/Source/ThirdParty/libwebrtc/Source/webrtc/media/engine/webrtcvideocapturer.cc
r210942 r212413 50 50 int id, 51 51 const char* device) { 52 #if RTC_HAS_ASAN 53 // FIXME: this shouldn't be necessary. 54 return nullptr; 55 #else 52 56 return webrtc::VideoCaptureFactory::Create(id, device); 57 #endif 53 58 } 54 59 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) { 60 #if RTC_HAS_ASAN 61 // FIXME: this shouldn't be necessary. 62 return nullptr; 63 #else 55 64 return webrtc::VideoCaptureFactory::CreateDeviceInfo(id); 65 #endif 56 66 } 57 67 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) { -
trunk/Source/ThirdParty/libwebrtc/libwebrtc.xcodeproj/project.pbxproj
r212401 r212413 54 54 5C0073121E5513E70042215A /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C00730D1E5513E70042215A /* CoreVideo.framework */; }; 55 55 5C0073141E5514020042215A /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C0073131E5514020042215A /* VideoToolbox.framework */; }; 56 5C0073431E552C800042215A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C0073411E552C800042215A /* CoreGraphics.framework */; }; 57 5C0073441E552C800042215A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C0073421E552C800042215A /* Security.framework */; }; 58 5C0073461E552CA20042215A /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C0073451E552CA20042215A /* SystemConfiguration.framework */; }; 56 59 5C0884E31E4A986000403995 /* compare.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C4B4D341E4323D4002651C8 /* compare.cc */; }; 57 60 5C0884E41E4A986000403995 /* compare_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C4B4D2F1E4323D4002651C8 /* compare_common.cc */; }; … … 2672 2675 5C00730D1E5513E70042215A /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; }; 2673 2676 5C0073131E5514020042215A /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; }; 2677 5C0073411E552C800042215A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 2678 5C0073421E552C800042215A /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; 2679 5C0073451E552CA20042215A /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; 2674 2680 5C0884891E4A978C00403995 /* libsrtp.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = libsrtp.xcconfig; sourceTree = "<group>"; }; 2675 2681 5C08848A1E4A978C00403995 /* libyuv.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = libyuv.xcconfig; sourceTree = "<group>"; }; … … 5118 5124 buildActionMask = 2147483647; 5119 5125 files = ( 5126 5C0073461E552CA20042215A /* SystemConfiguration.framework in Frameworks */, 5127 5C0073431E552C800042215A /* CoreGraphics.framework in Frameworks */, 5128 5C0073441E552C800042215A /* Security.framework in Frameworks */, 5120 5129 5C0073141E5514020042215A /* VideoToolbox.framework in Frameworks */, 5121 5130 5C00730E1E5513E70042215A /* AudioToolbox.framework in Frameworks */, … … 7157 7166 isa = PBXGroup; 7158 7167 children = ( 7168 5C0073451E552CA20042215A /* SystemConfiguration.framework */, 7169 5C0073411E552C800042215A /* CoreGraphics.framework */, 7170 5C0073421E552C800042215A /* Security.framework */, 7159 7171 5C0073131E5514020042215A /* VideoToolbox.framework */, 7160 7172 5C0073091E5513E70042215A /* AudioToolbox.framework */,
Note:
See TracChangeset
for help on using the changeset viewer.