1. 04 May, 2013 1 commit
  2. 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
  3. 08 Mar, 2013 2 commits
  4. 03 Mar, 2013 1 commit
  5. 12 Feb, 2013 1 commit
  6. 22 Jan, 2013 3 commits
  7. 04 Dec, 2012 1 commit
  8. 01 Nov, 2012 1 commit
  9. 14 Oct, 2012 1 commit
  10. 01 Oct, 2012 4 commits
  11. 07 Aug, 2012 1 commit
  12. 17 Jun, 2012 1 commit
  13. 07 Mar, 2012 1 commit
  14. 02 Mar, 2012 2 commits
  15. 18 Feb, 2012 1 commit
    • Ronald S. Bultje's avatar
      wma: don't return 0 on invalid packets. · 9d3050d3
      Ronald S. Bultje authored
      Return 0 means "please return the same data again", i.e. it causes an
      infinite loop. Instead, return an error.
      
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      9d3050d3
  16. 30 Jan, 2012 1 commit
  17. 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
  18. 16 Nov, 2011 1 commit
  19. 28 Oct, 2011 1 commit
  20. 24 Sep, 2011 1 commit
  21. 21 Jun, 2011 1 commit
  22. 22 May, 2011 1 commit
  23. 29 Apr, 2011 1 commit
  24. 27 Apr, 2011 1 commit
  25. 26 Apr, 2011 2 commits
  26. 19 Mar, 2011 2 commits
  27. 04 Feb, 2011 1 commit
  28. 02 Feb, 2011 1 commit
  29. 28 Jan, 2011 3 commits