1. 12 Dec, 2014 7 commits
  2. 10 Dec, 2014 2 commits
  3. 08 Dec, 2014 4 commits
  4. 05 Dec, 2014 3 commits
  5. 03 Dec, 2014 5 commits
  6. 27 Nov, 2014 4 commits
  7. 26 Nov, 2014 2 commits
  8. 21 Nov, 2014 2 commits
  9. 20 Nov, 2014 8 commits
  10. 19 Nov, 2014 2 commits
  11. 18 Nov, 2014 1 commit
    • MediaCodecTrackRenderer: Avoid excessive garbage generation · 255c3b27
      Looking up a long in a HashSet<Long> auto boxes the long and leaves
      it for the GC. As decodeOnly is relatively infrequent it's much
      better to do a simple linear search in a List<Long>. That way
      we can avoid boxing every incoming time stamp value. In the general
      case this will be linear searching in an empty list, a very fast
      operation.
      
      Signed-off-by: Jonas Larsson <jonas@hallerud.se>
      Jonas Larsson committed