1. 03 Oct, 2013 1 commit
  2. 04 Jul, 2013 1 commit
  3. 02 Jun, 2013 2 commits
  4. 29 May, 2013 4 commits
  5. 02 May, 2013 2 commits
  6. 01 May, 2013 1 commit
    • Michael Niedermayer's avatar
      vmdav: Try to fix unpack_rle() · c1f2c4c3
      Michael Niedermayer authored
      This fixes out of array accesses
      The code prior to this commit could not have worked, thus obviously
      was untested. I was also not able to find a valid sample that uses this
      code.
      This fix is thus only based on the description of the format
      
      If someone has a sample that uses unpack_rle(), please mail me.
      
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      c1f2c4c3
  7. 29 Mar, 2013 1 commit
  8. 28 Mar, 2013 1 commit
  9. 13 Mar, 2013 1 commit
    • Clément Bœsch's avatar
      lavc: factorize ff_{thread_,re,}get_buffer error messages. · 1ec94b0f
      Clément Bœsch authored
      Coccinelle profile used:
      
        @@
        expression r, ctx, f, loglevel, str, flags;
        @@
      
        -if ((r = ff_get_buffer(ctx, f, flags)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_get_buffer(ctx, f, flags)) < 0)
        +    return r;
      
        @@
        expression r, ctx, f, loglevel, str;
        @@
      
        -if ((r = ff_reget_buffer(ctx, f)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_reget_buffer(ctx, f)) < 0)
        +    return r;
      
        @@
        expression r, ctx, f, loglevel, str, flags;
        @@
      
        -if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) {
        -    av_log(ctx, loglevel, str);
        -    return r;
        -}
        +if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0)
        +    return r;
      
      ...along with some manual patches for the remaining ones.
      1ec94b0f
  10. 08 Mar, 2013 2 commits
  11. 12 Feb, 2013 1 commit
  12. 04 Dec, 2012 2 commits
  13. 15 Nov, 2012 1 commit
  14. 11 Nov, 2012 1 commit
  15. 01 Nov, 2012 1 commit
  16. 14 Oct, 2012 1 commit
  17. 08 Oct, 2012 1 commit
  18. 15 Aug, 2012 1 commit
  19. 07 Aug, 2012 1 commit
  20. 06 Apr, 2012 1 commit
  21. 23 Mar, 2012 1 commit
  22. 24 Dec, 2011 1 commit
  23. 02 Dec, 2011 1 commit
    • Justin Ruggles's avatar
      Add avcodec_decode_audio4(). · 0eea2129
      Justin Ruggles authored
      Deprecate avcodec_decode_audio3().
      Implement audio support in avcodec_default_get_buffer().
      Implement the new audio decoder API in all audio decoders.
      0eea2129
  24. 13 Nov, 2011 1 commit
  25. 12 Nov, 2011 1 commit
  26. 05 Nov, 2011 1 commit
  27. 06 Oct, 2011 1 commit
  28. 25 Sep, 2011 1 commit
  29. 24 Sep, 2011 5 commits