1. 10 Dec, 2019 7 commits
  2. 09 Dec, 2019 12 commits
  3. 06 Dec, 2019 19 commits
  4. 05 Dec, 2019 2 commits
    • Two minor nullability fixes · b35d5d89
      PiperOrigin-RevId: 283810554
      olly committed
    • Invert the ownership scheme between SampleQueue and SampleMetadataQueue · 140ddc9f
      Saves around 200 lines of code. High level overview:
      - Rename SampleQueue to SampleDataQueue.
      - Rename SampleMetadataQueue to SampleQueue.
      
      This CL should not introduce behavior changes. The only significant
      changes in synchronization should be:
      + Add synchronized keyword to isReady.
        - Seems to be necessary.
      + Add synchronized keyword to SampleQueue.sampleMetadata.
        - Before this change, SampleQueue.sampleMetadata could acquire the
          SampleMetadataQueue lock three times in a single method call.
      
      Other miscellaneous improvements:
      + Put all private methods at the bottom.
      + Move release() to the right category.
      
      PiperOrigin-RevId: 283795844
      aquilescanta committed