1. 12 Apr, 2016 1 commit
  2. 11 Apr, 2016 3 commits
  3. 08 Apr, 2016 2 commits
  4. 07 Apr, 2016 1 commit
  5. 06 Apr, 2016 1 commit
  6. 02 Apr, 2016 1 commit
  7. 01 Apr, 2016 1 commit
  8. 31 Mar, 2016 1 commit
  9. 16 Mar, 2016 2 commits
  10. 10 Mar, 2016 1 commit
  11. 04 Mar, 2016 1 commit
  12. 29 Feb, 2016 1 commit
  13. 24 Feb, 2016 1 commit
  14. 19 Feb, 2016 1 commit
  15. 18 Feb, 2016 4 commits
  16. 17 Feb, 2016 2 commits
  17. 16 Feb, 2016 1 commit
  18. 12 Feb, 2016 2 commits
  19. 10 Feb, 2016 2 commits
  20. 09 Feb, 2016 3 commits
  21. 08 Feb, 2016 1 commit
  22. 05 Feb, 2016 1 commit
  23. 03 Feb, 2016 2 commits
  24. 02 Feb, 2016 3 commits
  25. 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