1. 24 Sep, 2021 7 commits
  2. 23 Sep, 2021 12 commits
  3. 22 Sep, 2021 2 commits
  4. 21 Sep, 2021 7 commits
  5. 20 Sep, 2021 9 commits
  6. 17 Sep, 2021 3 commits
    • Make README structure match the desired androidx structure · 0f0e11aa
      PiperOrigin-RevId: 397319051
      kimvde committed
    • Support RFC4566 SDP attribute. · fd6a6ec8
      Issue: #9430
      
      The current supported SDP (RFC2327) spec only allows for alpha-numeric
      characters in the attribute-field. RFC4566 (section 9, token type) allowed
      extra characters, and this CL adds the support.
      
      PiperOrigin-RevId: 397301173
      claincly committed
    • Improve AdtsExtractor#sniff when trying different sync word offsets · 5f3953d3
      The previous implementation did the following (after skipping any ID3
      headers at the start of the stream):
      1. Skip forward byte-by-byte looking for a sync word (0xFFF)
      2. Assume this indicates the start of an ADTS frame and read the size
        a) If frameSize <= 6 immediately return false
      3. Skip forward by frameSize and expect to find another ADTS sync word
         (with no further scanning).
         b) If we find one, great! Loop from step 2.
         a) If we don't find one then assume the **last** sync word we found
            wasn't actually one, so loop from step 1 starting one extra byte
            into the stream. This means we're looking for a sync word we would
            have skipped over in step 3.
      
      The asymmetry here comes from the different handling of frameSize <= 6
      (immediately return false) and frameSize being 'wrong because it doesn't
      lead to another sync word' (scan the file again from the beginning for
      alternative sync words).
      
      With this change both these cases are handled symmetrically (always scan
      for alternative sync words). Step 2a) becomes the same as 3b): Loop back
      to the beginning of the stream with an incremented offset and scan for
      another sync word.
      
      #minor-release
      
      PiperOrigin-RevId: 397285756
      ibaker committed