<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      mac os 編譯webrtc 報錯screen_capturer_mac.mm:500:5: error: 'CGDisplayStreamStop' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]

      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:462:11: error: 'CGDisplayStreamUpdateGetRects' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        462 |           CGDisplayStreamUpdateGetRects(updateRef, kCGDisplayStreamUpdateDirtyRects, &count);
            |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:106:37: note: 'CGDisplayStreamUpdateGetRects' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        106 | CG_EXTERN const CGRect * __nullable CGDisplayStreamUpdateGetRects(CGDisplayStreamUpdateRef __nullable updateRef,
            |                                     ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:462:11: note: enclose 'CGDisplayStreamUpdateGetRects' in an @available check to silence this warning
        461 |       const CGRect* rects =
        462 |           CGDisplayStreamUpdateGetRects(updateRef, kCGDisplayStreamUpdateDirtyRects, &count);
            |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        463 |       if (count != 0) {
        464 |         // According to CGDisplayStream.h, it's safe to call
        465 |         // CGDisplayStreamStop() from within the callback.
        466 |         ScreenRefresh(display_id, count, rects, display_origin, frame_surface);
        467 |       }
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:472:44: error: 'kCGDisplayStreamShowCursor' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        472 |                            (const void*[]){kCGDisplayStreamShowCursor},
            |                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:195:30: note: 'kCGDisplayStreamShowCursor' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        195 | CG_EXTERN const CFStringRef  kCGDisplayStreamShowCursor CG_AVAILABLE_BUT_DEPRECATED(13.0, 14.0, "Please use ScreenCaptureKit API's SCStreamConfiguration showsCursor property instead");  /* CFBoolean - defaults to false */
            |                              ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:472:44: note: enclose 'kCGDisplayStreamShowCursor' in an @available check to silence this warning
        470 |     rtc::ScopedCFTypeRef<CFDictionaryRef> properties_dict(
        471 |         CFDictionaryCreate(kCFAllocatorDefault,
        472 |                            (const void*[]){kCGDisplayStreamShowCursor},
            |                                            ^~~~~~~~~~~~~~~~~~~~~~~~~~
        473 |                            (const void*[]){kCFBooleanFalse},
        474 |                            1,
        475 |                            &kCFTypeDictionaryKeyCallBacks,
        476 |                            &kCFTypeDictionaryValueCallBacks));
        477 |
        478 |     CGDisplayStreamRef display_stream = CGDisplayStreamCreate(
        479 |         display_id, pixel_width, pixel_height, 'BGRA', properties_dict.get(), handler);
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:478:41: error: 'CGDisplayStreamCreate' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        478 |     CGDisplayStreamRef display_stream = CGDisplayStreamCreate(
            |                                         ^~~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:243:41: note: 'CGDisplayStreamCreate' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        243 | CG_EXTERN CGDisplayStreamRef __nullable CGDisplayStreamCreate(CGDirectDisplayID display,
            |                                         ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:478:41: note: enclose 'CGDisplayStreamCreate' in an @available check to silence this warning
        478 |     CGDisplayStreamRef display_stream = CGDisplayStreamCreate(
            |                                         ^~~~~~~~~~~~~~~~~~~~~
        479 |         display_id, pixel_width, pixel_height, 'BGRA', properties_dict.get(), handler);
        480 |
        481 |     if (display_stream) {
        482 |       CGError error = CGDisplayStreamStart(display_stream);
        483 |       if (error != kCGErrorSuccess) return false;
        484 |
        485 |       CFRunLoopSourceRef source = CGDisplayStreamGetRunLoopSource(display_stream);
        486 |       CFRunLoopAddSource(CFRunLoopGetCurrent(), source, kCFRunLoopCommonModes);
        487 |       display_streams_.push_back(display_stream);
        488 |     }
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:482:23: error: 'CGDisplayStreamStart' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        482 |       CGError error = CGDisplayStreamStart(display_stream);
            |                       ^~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:273:19: note: 'CGDisplayStreamStart' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        273 | CG_EXTERN CGError CGDisplayStreamStart(CGDisplayStreamRef cg_nullable displayStream)
            |                   ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:482:23: note: enclose 'CGDisplayStreamStart' in an @available check to silence this warning
        482 |       CGError error = CGDisplayStreamStart(display_stream);
            |                       ^~~~~~~~~~~~~~~~~~~~
        483 |       if (error != kCGErrorSuccess) return false;
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:485:35: error: 'CGDisplayStreamGetRunLoopSource' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        485 |       CFRunLoopSourceRef source = CGDisplayStreamGetRunLoopSource(display_stream);
            |                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:295:41: note: 'CGDisplayStreamGetRunLoopSource' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        295 | CG_EXTERN CFRunLoopSourceRef __nullable CGDisplayStreamGetRunLoopSource(CGDisplayStreamRef cg_nullable displayStream)
            |                                         ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:485:35: note: enclose 'CGDisplayStreamGetRunLoopSource' in an @available check to silence this warning
        485 |       CFRunLoopSourceRef source = CGDisplayStreamGetRunLoopSource(display_stream);
            |                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        486 |       CFRunLoopAddSource(CFRunLoopGetCurrent(), source, kCFRunLoopCommonModes);
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:498:33: error: 'CGDisplayStreamGetRunLoopSource' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        498 |     CFRunLoopSourceRef source = CGDisplayStreamGetRunLoopSource(stream);
            |                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:295:41: note: 'CGDisplayStreamGetRunLoopSource' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        295 | CG_EXTERN CFRunLoopSourceRef __nullable CGDisplayStreamGetRunLoopSource(CGDisplayStreamRef cg_nullable displayStream)
            |                                         ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:498:33: note: enclose 'CGDisplayStreamGetRunLoopSource' in an @available check to silence this warning
        498 |     CFRunLoopSourceRef source = CGDisplayStreamGetRunLoopSource(stream);
            |                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        499 |     CFRunLoopRemoveSource(CFRunLoopGetCurrent(), source, kCFRunLoopCommonModes);
            |
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:500:5: error: 'CGDisplayStreamStop' is only available on macOS 13.0 or newer [-Werror,-Wunguarded-availability-new]
        500 |     CGDisplayStreamStop(stream);
            |     ^~~~~~~~~~~~~~~~~~~
      ../../../../../../../Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDisplayStream.h:285:19: note: 'CGDisplayStreamStop' has been marked as being introduced in macOS 13.0 here, but the deployment target is macOS 10.15.0
        285 | CG_EXTERN CGError CGDisplayStreamStop(CGDisplayStreamRef cg_nullable displayStream)
            |                   ^
      ../../modules/desktop_capture/mac/screen_capturer_mac.mm:500:5: note: enclose 'CGDisplayStreamStop' in an @available check to silence this warning
        500 |     CGDisplayStreamStop(stream);
            |     ^~~~~~~~~~~~~~~~~~~
      7 errors generated.
      [15/6442] CXX obj/modules/pacing/pacing_unittests/packet_router_unittest.o
      ninja: build stopped: subcommand failed.

      報錯信息如上.

      解決方法: 

      refs: https://hg.mozilla.org/mozilla-central/rev/8443a5cec0ac (看這個就夠了)

       https://bugzilla.mozilla.org/show_bug.cgi?id=1832717

      posted @ 2023-11-06 15:14  yushimeng  閱讀(198)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 欧美视频精品免费覌看| 国产午夜福利视频合集| 亚洲最大有声小说AV网| 国产欧美日韩精品丝袜高跟鞋| 亚洲偷偷自拍码高清视频| 南木林县| 亚洲成亚洲成网中文字幕| 2021亚洲国产精品无码| 又湿又紧又大又爽A视频男| 亚洲人妻系列中文字幕| 熟女亚洲综合精品伊人久久| 亚洲欧洲日韩国内精品| 亚洲永久精品免费在线看| 亚洲国产成人一区二区在线| 亚洲av午夜成人片| 久久av高潮av喷水av无码| 亚洲国产在一区二区三区| 国产免费网站看v片元遮挡| 成午夜福利人试看120秒| 欧美xxxx精品另类| 纯肉高h啪动漫| 亚洲粉嫩av一区二区黑人| 青草99在线免费观看| 国产绿帽在线视频看| 香蕉亚洲欧洲在线一区| 成人亚欧欧美激情在线观看 | 国产精品午夜福利91| bt天堂新版中文在线| 久久精品一区二区三区中文字幕 | 国产av永久无码天堂影院| 亚洲精品麻豆一区二区| 色色97| 亚洲日韩久热中文字幕| 颍上县| 久久免费看少妇免费观看| 男人av无码天堂| 亚洲v欧美v国产v在线观看| 无码AV无码免费一区二区| 久久精品国产亚洲AⅤ无码| 国产无套护士在线观看| 丰满无码人妻热妇无码区|