Skip to content
Snippets Groups Projects
  1. Dec 07, 2020
  2. Dec 06, 2020
  3. Oct 30, 2020
  4. Oct 29, 2020
  5. Oct 27, 2020
  6. Oct 14, 2020
  7. Oct 06, 2020
  8. Oct 05, 2020
    • Nirbheek Chauhan's avatar
      cerbero: Support XCode Python 3 on macOS Big Sur · 27e09f3a
      Nirbheek Chauhan authored and Tim-Philipp Müller's avatar Tim-Philipp Müller committed
      python.org's official Python 3 release does not work on Big Sur, so
      the only option at present is to use the Python 3 that ships with
      XCode. Unfortunately, that doesn't ship with python3-config right now
      so you need to build with `-v nogi`.
      
      XCode's Python 3 defaults to a framework path for sysconfig purelib:
      /Library/Python/3.8/site-packages but setuptools still uses the posix
      path: /lib/python3.8/site-packages. This also means we'd have
      inconsistent paths based on your macOS version.
      
      The second issue is that on Windows the purelib path is
      \Lib\site-packages which is not version-specific but it *is* the
      default for setuptools, so let's consistently add both.
      
      Part-of: <!628>
      27e09f3a
    • Nirbheek Chauhan's avatar
      Add enums for macOS Big Sur · 32b28ca1
      Nirbheek Chauhan authored and Tim-Philipp Müller's avatar Tim-Philipp Müller committed
      Part-of: <gstreamer/cerbero!628>
      32b28ca1
  9. Oct 04, 2020
  10. Oct 01, 2020
  11. Sep 30, 2020
  12. Sep 09, 2020
  13. Sep 08, 2020
  14. Sep 02, 2020
    • Nirbheek Chauhan's avatar
      gst-plugins-bad: Enable nvcodec by default · 3f26966e
      Nirbheek Chauhan authored
      We do not need to compile against any Nvidia SDKs now, so we can build
      this by default and ship it out of the box in our binary releases.
      
      It's still disabled on UWP, iOS, and Android since it's not usable on
      those.
      
      Part-of: <!587>
      3f26966e
  15. Sep 01, 2020
  16. Aug 31, 2020
  17. Aug 30, 2020
  18. Aug 29, 2020
  19. Aug 24, 2020
  20. Aug 20, 2020
  21. Aug 19, 2020
  22. Aug 13, 2020
  23. Aug 07, 2020
  24. Aug 03, 2020
  25. Jul 31, 2020
    • Nirbheek Chauhan's avatar
      cerbero: Use separate prefixes for MSVC/MinGW in the MSI · fdf56765
      Nirbheek Chauhan authored
      Before we would output mingw, msvc, msvc-debug into the same prefixes,
      and would set the same env var for all:
      
      C:\gstreamer\1.0\x86_64
      C:\gstreamer\1.0\x86
      GSTREAMER_1_0_ROOT_X86_64
      GSTREAMER_1_0_ROOT_X86
      
      Now we will output into:
      
      -v novisualstudio (default)
      C:\gstreamer\1.0\mingw_x86_64
      C:\gstreamer\1.0\mingw_x86
      GSTREAMER_1_0_ROOT_MINGW_X86_64
      GSTREAMER_1_0_ROOT_MINGW_X86
      
      -v visualstudio
      C:\gstreamer\1.0\msvc_x86_64
      C:\gstreamer\1.0\msvc_x86
      GSTREAMER_1_0_ROOT_MSVC_X86_64
      GSTREAMER_1_0_ROOT_MSVC_X86
      
      -v visualstudio,vscrt=mdd
      C:\gstreamer\1.0\msvc-debug_x86_64
      C:\gstreamer\1.0\msvc-debug_x86
      GSTREAMER_1_0_ROOT_MSVC_DEBUG_X86_64
      GSTREAMER_1_0_ROOT_MSVC_DEBUG_X86
      
      Fixes #281
      
      Part-of: <!567>
      fdf56765
  26. Jul 30, 2020
Loading