1. 11 Aug, 2019 1 commit
  2. 13 Jul, 2019 1 commit
  3. 30 Mar, 2018 3 commits
  4. 02 May, 2017 1 commit
  5. 07 Feb, 2017 1 commit
  6. 03 Feb, 2017 1 commit
  7. 25 Jan, 2017 1 commit
  8. 11 Jun, 2016 1 commit
  9. 27 Jul, 2015 1 commit
  10. 13 Mar, 2014 1 commit
  11. 03 Oct, 2013 1 commit
  12. 13 Mar, 2013 2 commits
    • Diego Biurrun's avatar
    • 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
  13. 08 Mar, 2013 1 commit
  14. 12 Feb, 2013 1 commit
  15. 04 Dec, 2012 1 commit
  16. 11 Nov, 2012 1 commit
  17. 12 Oct, 2012 1 commit
  18. 01 Oct, 2012 1 commit
  19. 08 Aug, 2012 1 commit
  20. 07 Aug, 2012 1 commit
  21. 06 Aug, 2012 1 commit
  22. 26 Jul, 2012 1 commit
  23. 06 Jun, 2012 1 commit
  24. 05 Jun, 2012 1 commit
    • Kostya Shishkov's avatar
      mpc8: fix maximum bands handling · b56825c4
      Kostya Shishkov authored
      In Musepack SV8 codec property tell the maximum nonzero band, but every
      frame codes maximum band as a limit (i.e. strictly less than given value).
      Synthesis also expects maximum nonzero band, so there's a need to convert
      frame maximum band limit value.
      b56825c4
  25. 03 Jun, 2012 1 commit
  26. 24 Apr, 2012 2 commits
  27. 06 Apr, 2012 1 commit
  28. 15 Feb, 2012 2 commits
  29. 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
  30. 07 Oct, 2011 1 commit
  31. 02 Oct, 2011 1 commit
  32. 25 Sep, 2011 1 commit
  33. 29 Jul, 2011 1 commit
  34. 04 Jun, 2011 1 commit
  35. 19 May, 2011 1 commit