1. 07 Apr, 2016 1 commit
  2. 06 Apr, 2016 1 commit
  3. 02 Apr, 2016 1 commit
  4. 01 Apr, 2016 1 commit
  5. 31 Mar, 2016 1 commit
  6. 16 Mar, 2016 2 commits
  7. 10 Mar, 2016 1 commit
  8. 04 Mar, 2016 1 commit
  9. 29 Feb, 2016 1 commit
  10. 24 Feb, 2016 1 commit
  11. 19 Feb, 2016 1 commit
  12. 18 Feb, 2016 4 commits
  13. 17 Feb, 2016 2 commits
  14. 16 Feb, 2016 1 commit
  15. 12 Feb, 2016 2 commits
  16. 10 Feb, 2016 2 commits
  17. 09 Feb, 2016 3 commits
  18. 08 Feb, 2016 1 commit
  19. 05 Feb, 2016 1 commit
  20. 03 Feb, 2016 2 commits
  21. 02 Feb, 2016 3 commits
  22. 01 Feb, 2016 1 commit
    • Frank Barchard's avatar
      ubsan overflow fix for multiply by 0x01010101 · 9e39c1f2
      Frank Barchard authored
      This is an UBSan error reported by libjingle
      
      [ RUN      ] WebRtcVideoFrameTest.ConvertToYUY2BufferStride
      [000:000] (videoframe.cc:375): Validate frame passed. format: I420 bpp: 12 size: 1280x720 bytes: 1382400 expected: 1382400 sample[0..3]: 73, 73, 73, 73
      ../../chromium/src/third_party/libyuv/source/row_gcc.cc:2903:25: runtime error: signed integer overflow: 128 * 16843009 cannot be represented in type 'int'
      [8/614] WebRtcVideoFrameTest.ConvertToYUY2BufferStride returned/aborted with exit code 1 (32 ms)
      [9/614] WebRtcVideoFrameTest.ConvertToYUY2BufferInverted (29 ms)
      Note: Google Test filter = WebRtcVideoFrameTest.ConvertToYUY2BufferInverted
      
      The source is uint8 and the multiply is by 0x01010101 to replicate the byte to 4 bytes.
      Changing the constant to 0x01010101u should avoid overflow.
      
      R=harryjin@google.com
      TBR=harryjin@google.com
      BUG=libyuv:563
      
      Review URL: https://codereview.chromium.org/1657533005 .
      9e39c1f2
  23. 27 Jan, 2016 1 commit
  24. 21 Jan, 2016 3 commits
  25. 20 Jan, 2016 2 commits