Skip to content
Snippets Groups Projects
  1. Sep 16, 2018
  2. Sep 11, 2018
  3. Sep 10, 2018
    • Nirbheek Chauhan's avatar
      wasapi: Remove code that sets thread priority · e6368cc2
      Nirbheek Chauhan authored
      This is now handled directly in gstaudiosrc/sink, and we were setting
      it in the wrong thread anyway. prepare() is not the same thread as
      sink_write() or src_read().
      e6368cc2
    • Nirbheek Chauhan's avatar
      wasapi: Fix build with Windows 8.1 SDK · 412eb73e
      Nirbheek Chauhan authored
      With the Windows 8.1 SDK, the v1 of the AUDCLNT_STREAMOPTIONS enum is
      defined which only has NONE and RAW, so it's not only defined when
      AudioClient3 is available.
      
      Add a meson check for the symbol. This is not needed for Autotools
      because there we build against the MinGW audioclient.h which is still
      at v1 of the AudioClient interface.
      412eb73e
  4. Sep 08, 2018
  5. Sep 07, 2018
  6. Sep 03, 2018
  7. Aug 29, 2018
  8. Aug 17, 2018
  9. Aug 16, 2018
  10. Aug 08, 2018
    • Edward Hervey's avatar
      opencv: Fix memcpy within C++ · b23dea44
      Edward Hervey authored and Sebastian Dröge's avatar Sebastian Dröge committed
      Explicitly cast to void* because GCC 8 is (rightfully) upset that this is
      "writing to an object of type ‘...’ with no trivial copy-assignment".
      
      Caused by the new "class-memaccess" warning
      b23dea44
    • Edward Hervey's avatar
      dvb: Fix string copy wiht strlen() argument · 23f5c02c
      Edward Hervey authored and Sebastian Dröge's avatar Sebastian Dröge committed
      This is a new warning introduced by gcc 8
      
      We already check just before that we have enough space, just do a regular
      memcpy with the full string size.
      
      camswclient.c:87:3: error: ‘strncpy’ specified bound depends on the length of the source argument [-Werror=stringop-overflow=]
      23f5c02c
  11. Aug 07, 2018
    • Thibault Saunier's avatar
      opencv: Fix build for opencv >= 3.4.2 · bcb43629
      Thibault Saunier authored
      The `CV_RGB` macro is now in `imgproc.hpp`.
      
      Fixes:
      
          ../subprojects/gst-plugins-bad/ext/opencv/gsthanddetect.cpp:497:40: error: ‘CV_RGB’ was not declared in this scope
                  cvCircle (img, center, radius, CV_RGB (0, 0, 200), 1, 8, 0);
                                              ^~~~~~
      bcb43629
  12. Aug 03, 2018
  13. Aug 02, 2018
  14. Jul 25, 2018
  15. Jul 20, 2018
  16. Jul 18, 2018
    • Mathieu Duponchelle's avatar
      find_codec_preferences: use received caps · 8ad57f24
      Mathieu Duponchelle authored and Tim-Philipp Müller's avatar Tim-Philipp Müller committed
      When negotiation is triggered by receiving caps on our sink pad
      probes, we could encounter a race condition where need-negotiation
      is emitted and the application requires the creation of an offer
      before the current caps were actually updated.
      
      This led to retrieving incomplete caps when creating the offer,
      using find_codec_preferences -> pad_get_current_caps.
      
      Instead, as we save the caps in the probe callback anyway, it is better
      and thread safe to use these if they were set.
      
      https://bugzilla.gnome.org/show_bug.cgi?id=796801
      8ad57f24
Loading