1. 15 1月, 2020 3 次提交
  2. 14 1月, 2020 1 次提交
  3. 13 1月, 2020 3 次提交
  4. 08 1月, 2020 2 次提交
    • F
      obs-outputs: Fix mbedtls use of deprecated functions · 2699bbbd
      Florian Zwoch 提交于
      mbedtls_md5_starts(), mbedtls_md5_update() and mbedtls_md5_finish()
      have been marked deprecated since mbedtls version 2.7 and may go
      away in the future.
      
      These function have been superseded by versions with a return
      value. They are suffixed with "_ret". We do not actually check
      return values.
      
      Also the header "mbedtls/net.h" has been superseded by
      "mbedtls/net_sockets.h".
      2699bbbd
    • D
      rtmp-services: Update/remove services · 3d091d5e
      derrod 提交于
      - Mixer OSL removed (NXDOMAIN)
      - Restream.io Prague added (FTL & RTMP)
      - GameTips.tv removed (NXDOMAIN on all servers)
      3d091d5e
  5. 05 1月, 2020 1 次提交
  6. 04 1月, 2020 1 次提交
  7. 31 12月, 2019 1 次提交
  8. 27 12月, 2019 1 次提交
    • J
      obs-filters: Add grayscale LUT image · f452bfee
      jpark37 提交于
      Not sure what effect black_and_white.png is going for. Add grayscale.png
      to try to make it clear that the other image shouldn't be used for
      desaturation.
      f452bfee
  9. 19 12月, 2019 1 次提交
  10. 16 12月, 2019 1 次提交
  11. 15 12月, 2019 2 次提交
  12. 13 12月, 2019 2 次提交
  13. 12 12月, 2019 1 次提交
  14. 11 12月, 2019 1 次提交
  15. 09 12月, 2019 1 次提交
  16. 07 12月, 2019 1 次提交
  17. 28 11月, 2019 2 次提交
  18. 26 11月, 2019 1 次提交
  19. 25 11月, 2019 3 次提交
  20. 21 11月, 2019 2 次提交
  21. 19 11月, 2019 1 次提交
  22. 16 11月, 2019 1 次提交
  23. 13 11月, 2019 2 次提交
    • J
      win-dshow: Support bottom-up DIBs · f896c773
      jpark37 提交于
      The biHeight field can be negative, leading to crashes on some cards
      like VisionRGB-E1S. Adding flip support is fairly straightforward.
      
      There also appears to be a hack to automatically flip for RGB formats,
      but I wish to remove it because it seems to fight with this change. We
      already have a separate vertical flip checkbox to deal with non
      compliant behavior.
      f896c773
    • W
      win-dshow: Fix format switching issue · 9b4d9c67
      wanhongqing 提交于
      If the format was one encoded format and changes to another encoded
      format, it could cause it to continue to treat it as the old format.
      9b4d9c67
  24. 08 11月, 2019 1 次提交
  25. 07 11月, 2019 3 次提交
  26. 06 11月, 2019 1 次提交
    • T
      win-capture: Fix rare crash when GL program exits · 76e6a991
      tujinshu 提交于
      **Commit message modified and clarified by Jim**
      
      When hooking a program that has both DirectX and OpenGL contexts in use,
      it is possible to cause a crash on shutdown due to capture_active()
      returning true when an OpenGL context is deleted.  Normally, when
      capturing an OpenGL program, this would not happen because the 'active'
      variable would not be set due to OpenGL capture not being initialized,
      but if DirectX is captured while an OpenGL context is available, and
      OpenGL could not load these required functions, then GL can crash due to
      trying to use unavailable functions.
      
      This case is extremely rare and doesn't happen under normal
      circumstances; only if a program is using both DirectX and OpenGL within
      the same program simultaneously, and *only* if OpenGL could not load the
      required functions.  This likely almost never happens under normal
      programs, games, and hardware.  This was apparently produced by hooking
      a GL Qt program that used QWebEngine, which used multiple contexts at
      once.
      76e6a991