1. 26 Aug, 2016 - 1 commit
  2. 22 Aug, 2016 - 1 commit
  3. 19 Aug, 2016 - 1 commit
  4. 18 Aug, 2016 - 1 commit
  5. 17 Aug, 2016 - 1 commit
  6. 13 Aug, 2016 - 1 commit
  7. 12 Aug, 2016 - 12 commits
  8. 10 Aug, 2016 - 1 commit
  9. 09 Aug, 2016 - 1 commit
  10. 05 Aug, 2016 - 1 commit
  11. 04 Aug, 2016 - 3 commits
  12. 02 Aug, 2016 - 1 commit
  13. 01 Aug, 2016 - 1 commit
  14. 28 Jul, 2016 - 1 commit
  15. 27 Jul, 2016 - 1 commit
  16. 26 Jul, 2016 - 4 commits
  17. 25 Jul, 2016 - 1 commit
  18. 21 Jul, 2016 - 1 commit
    • Edward Welbourne's avatar
      Merge remote-tracking branch 'origin/5.7' into dev · 7a5e3145
      Edward Welbourne authored
      Conflicts:
      	src/plugins/directshow/player/directshowiosource.cpp
      One side disintermediated filling a vector; the other reduced it to one entry.
      
      	src/plugins/directshow/player/directshowiosource.h
      One side renamed a member, the other added another adjacent to it.
      
      	src/plugins/pulseaudio/qpulseaudioengine.h
      One side added a header, the other replaced the next with a different header.
      
      Change-Id: I3a031975f5af43ca39cca571f215c612f640b7d6
      7a5e3145
  19. 20 Jul, 2016 - 1 commit
  20. 19 Jul, 2016 - 1 commit
    • Timur Pocheptsov's avatar
      AVFMediaAssetWriter - fix atomics use · 17674ddc
      Timur Pocheptsov authored
      
      1. No need in two different atomics (m_stopped/m_aborted) - the single
      one 'm_state' with states (Idle/Active/Aborted) should be enough.
      2. QAtomicInt::load/store actually have relaxed memory ordering semantics,
      (not like std::atomic with sequential ordering as the default one)
      which is not always appropriate - replace with loadAquire/storeRelease instead.
      
      Change-Id: I4ce8c9ca7556de3d2c7e369b8a05276b2870460c
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      17674ddc
  21. 07 Jul, 2016 - 1 commit
  22. 06 Jul, 2016 - 3 commits
    • Pavel Golikov's avatar
      Android: Fix OpenGL texture name leak · 278fd530
      Pavel Golikov authored
      
      This fixes texture name leak when changing media player's source. Texture name
      shold be deleted by OpenGLResourcesDeleter class, but when player's source is
      changed OpenGLResourcesDeleter's texture name is reassigned with new one
      without old name deletion.
      This change deletes OpenGLResourcesDeleter's current texture name when new name
      is assigned.
      
      Task-number: QTBUG-54340
      Change-Id: I22bbd60b4462b0034fd115f0582ea43b9bcaee4b
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      278fd530
    • Yoann Lopes's avatar
      DirectShow: refactor custom renderer filter · 631b89dd
      Yoann Lopes authored
      
      Refactor out some of the filter and pin logic into the
      DirectShowBaseFilter and DirectShowPin abstract classes.
      This will avoid code duplication when implementing the probe
      filter. The existing source filter (for qrc files) can also be
      refactored to use these abstract classes.
      
      Change-Id: Iaf141472dea82579ad085b3318624f9a57aa46d8
      Reviewed-by: default avatarChristian Stromme <christian.stromme@qt.io>
      631b89dd
    • Milla Pohjanheimo's avatar
      Blacklisting playPauseStop() on all Linuxes · c2f15b60
      Milla Pohjanheimo authored
      
      Changed the blacklisting of playPauseStop() to be "linux" instead
      of separately blacklisting it for each Linux distribution, since it's
      failing on all.
      
      Change-Id: I0b545423bf598b7487722bd5dda2d236be7131f6
      Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
      c2f15b60