1. 02 Nov, 2015 3 commits
  2. 01 Nov, 2015 1 commit
  3. 30 Oct, 2015 8 commits
  4. 29 Oct, 2015 1 commit
  5. 28 Oct, 2015 4 commits
  6. 27 Oct, 2015 1 commit
  7. 26 Oct, 2015 8 commits
  8. 25 Oct, 2015 6 commits
  9. 23 Oct, 2015 7 commits
  10. 22 Oct, 2015 1 commit
    • Vittorio Giovara's avatar
      lavc: Deprecate AVPicture structure and related functions · dca23ffb
      Vittorio Giovara authored
      This structure served as a bridge between data pointers and frames,
      but it suffers from several limitations:
      - it is not refcounted and data must be copied to every time
      - it cannot be expanded without ABI break due to being used on the stack
      - its functions are just wrappers to imgutils which add a layer of
        unneeded indirection, and maintenance burden
      - it allows hacks like embedding uncompressed data in packets
      - its use is often confusing to our users
      
      AVFrame provides a much better API, and, if a full blown frame is not
      needed, it is just as simple and more straightfoward to use data and
      linesize arrays directly.
      Signed-off-by: 's avatarVittorio Giovara <vittorio.giovara@gmail.com>
      dca23ffb