1. 03 Oct, 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 1 commit
  4. 12 Feb, 2013 1 commit
  5. 04 Dec, 2012 1 commit
  6. 05 Nov, 2012 1 commit
  7. 01 Nov, 2012 1 commit
  8. 07 Aug, 2012 1 commit
  9. 25 Mar, 2012 1 commit
  10. 17 Feb, 2012 1 commit
  11. 26 Jan, 2012 1 commit
  12. 08 Jan, 2012 1 commit
  13. 16 Dec, 2011 1 commit
  14. 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
  15. 11 Nov, 2011 2 commits
  16. 30 Sep, 2011 13 commits
  17. 24 Sep, 2011 1 commit
  18. 19 Mar, 2011 1 commit
  19. 11 Feb, 2011 1 commit
  20. 10 Feb, 2011 1 commit
  21. 28 Jan, 2011 1 commit
  22. 26 Jan, 2011 1 commit
  23. 12 Nov, 2010 1 commit
  24. 02 Jul, 2010 1 commit
  25. 30 Mar, 2010 1 commit
  26. 07 Apr, 2009 1 commit
  27. 02 Mar, 2009 1 commit