1. 27 Apr, 2017 5 commits
  2. 26 Apr, 2017 23 commits
  3. 25 Apr, 2017 6 commits
  4. 24 Apr, 2017 4 commits
  5. 23 Apr, 2017 2 commits
    • Philip Langdale's avatar
      avcodec/crystalhd: Another attempt at using mpeg4_unpack_bframes bsf · dd49eff9
      Philip Langdale authored
      I tried doing this before, but it resulted in weird behaviour with
      certain samples. I want to say I think I've got it sorted out now,
      and the new autobsf stuff makes it trivial to turn on.
      
      The native support for packed bframes is buggy and I think buggy
      in ways beyond what I already try to account for, so this should be
      a net improvements.
      dd49eff9
    • Philip Langdale's avatar
      avcodec/crystalhd: Explicitly set frame pts at all times · 181aa1be
      Philip Langdale authored
      Previously, the pts value was initialised to AV_NOPTS_VALUE and so
      it was not necessary to always set it. Now, with the new-new decode
      API, this is no longer true. I'm not sure why I avoided setting the
      pts when the decoder value was also AV_NOPTS_VALUE - it clearly
      wouldn't have changed anything previously, but here we are.
      
      Failing to do this, means the frame pts will be some random uninitalised
      value.
      181aa1be