1. 20 Apr, 2017 - 6 commits
  2. 18 Apr, 2017 - 1 commit
  3. 07 Apr, 2017 - 1 commit
  4. 03 Apr, 2017 - 1 commit
  5. 30 Mar, 2017 - 3 commits
  6. 29 Mar, 2017 - 1 commit
  7. 24 Mar, 2017 - 1 commit
  8. 22 Mar, 2017 - 2 commits
  9. 21 Mar, 2017 - 3 commits
  10. 20 Mar, 2017 - 2 commits
  11. 16 Mar, 2017 - 1 commit
  12. 10 Mar, 2017 - 1 commit
  13. 09 Mar, 2017 - 2 commits
  14. 07 Mar, 2017 - 2 commits
    • Paul Olav Tvete's avatar
      Fix build with -no-feature-graphicsview · eb5a5084
      Paul Olav Tvete authored
      
      Change-Id: Id5f0f90b816e878f828dd246b36ea3b4fc444e87
      Reviewed-by: default avatarLars Knoll <lars.knoll@qt.io>
      eb5a5084
    • James McDonnell's avatar
      Limit the size of the QnxAudioOutput stack buffer · a25d3a24
      James McDonnell authored
      
      QnxAudioOutput allocates a buffer on the stack based on the free value
      from snd_pcm_plugin_status, but the way that QnxAudioOutput configures
      the stream, how QnxAudioOutput currently pauses playback, and a bug in
      io-audio combine to cause io-audio to produce very large free values
      when resuming playback after a long pause.  As a result, QnxAudioOutput
      allocates a stack buffer that causes a stack overflow.  Allocating
      a buffer on the stack with a size that isn't restrained in any way
      isn't a good idea.  Put some constraints on the size.
      
      Change-Id: I2b72e72504041f0caeb591912662fb9bed931b21
      Reviewed-by: default avatarDan Cape <dcape@qnx.com>
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      a25d3a24
  15. 03 Mar, 2017 - 1 commit
  16. 02 Mar, 2017 - 2 commits
  17. 27 Feb, 2017 - 2 commits
  18. 23 Feb, 2017 - 1 commit
  19. 14 Feb, 2017 - 1 commit
  20. 06 Feb, 2017 - 2 commits
    • Hannah von Reth's avatar
      WMF plugin: Prevent detaching of QMediaResourceList · 8d0e08e9
      Hannah von Reth authored
      
      Change-Id: I2bf0fa346a166bdb20ce76b1fd4d7227680810dd
      Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@qt.io>
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      8d0e08e9
    • Friedemann Kleint's avatar
      DirectShow: Fix warnings of MinGW/gcc 5.3 · 5e01869d
      Friedemann Kleint authored
      
      helpers\directshowmediatype.h:70:58: note: in expansion of macro 'Q_DECL_NOTHROW'
           inline const AM_MEDIA_TYPE *const operator &() const Q_DECL_NOTHROW { return &mediaType; }
      qtbase/src/corelib/global/qcompilerdetection.h:1143:26: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
       # define Q_DECL_NOEXCEPT noexcept                          ^
      qtbase/src/corelib/global/qcompilerdetection.h:1153:25: note: in expansion of macro 'Q_DECL_NOEXCEPT'
       # define Q_DECL_NOTHROW Q_DECL_NOEXCEPT                         ^
      helpers\directshowmediatype.h:71:59: note: in expansion of macro 'Q_DECL_NOTHROW'
           inline const AM_MEDIA_TYPE *const operator ->() const Q_DECL_NOTHROW { return &mediaType; }                                                           ^
      
      camera\dscamerasession.cpp:604:24: warning: unused variable 'cLSID_SampleGrabber' [-Wunused-variable]
           static const CLSID cLSID_SampleGrabber = { 0xC1F400A0, 0x3F08, 0x11d3, { 0x9F, 0x0B, 0x00, 0x60, 0x08, 0x03, 0x9E, 0x37 } };
      camera\dscamerasession.cpp:603:22: warning: unused variable 'iID_ISampleGrabber' [-Wunused-variable]
           static const IID iID_ISampleGrabber = { 0x6B652FFF, 0x11FE, 0x4fce, { 0x92, 0xAD, 0x02, 0x66, 0xB5, 0xD7, 0xC7, 0x8F } };
                              ^
      helpers\directshowmediatype.cpp: In constructor 'DirectShowMediaType::DirectShowMediaType()':
      helpers\directshowmediatype.cpp:79:57: warning: missing initializer for member '_AMMediaType::formattype' [-Wmissing-field-initializers]
           : mediaType({ GUID_NULL, GUID_NULL, TRUE, FALSE, 1 })
      helpers\directshowmediatype.cpp:79:57: warning: missing initializer for member '_AMMediaType::pUnk' [-Wmissing-field-initializers]
      helpers\directshowmediatype.cpp:79:57: warning: missing initializer for member '_AMMediaType::cbFormat' [-Wmissing-field-initializers]
      helpers\directshowmediatype.cpp:79:57: warning: missing initializer for member '_AMMediaType::pbFormat' [-Wmissing-field-initializers]
      
      camera\dscamerasession.cpp:805:111: warning: missing initializer for member '_AMMediaType::pUnk' [-Wmissing-field-initializers]
           static const AM_MEDIA_TYPE grabberFormat { MEDIATYPE_Video, MEDIASUBTYPE_RGB32, 0, 0, 0, FORMAT_VideoInfo };
      camera\dscamerasession.cpp:805:111: warning: missing initializer for member '_AMMediaType::cbFormat' [-Wmissing-field-initializers]
      camera\dscamerasession.cpp:805:111: warning: missing initializer for member '_AMMediaType::pbFormat' [-Wmissing-field-initializers]
      camera\dscamerasession.cpp: In member function 'void DSCameraSession::presentFrame()':
      
      camera\dscamerasession.cpp:585:52: warning: 'captureId' may be used uninitialized in this function [-Wmaybe-uninitialized]
               emit imageCaptured(captureId, captureImage);
      
      Change-Id: I2870c1489bd375d3d43a31742551dab220015660
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      v5.9.0-alpha1
      5e01869d
  21. 03 Feb, 2017 - 2 commits
  22. 02 Feb, 2017 - 1 commit
  23. 27 Jan, 2017 - 1 commit