1. 04 May, 2013 1 commit
  2. 30 Apr, 2013 1 commit
  3. 15 Mar, 2013 1 commit
  4. 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
  5. 08 Mar, 2013 1 commit
  6. 25 Feb, 2013 1 commit
  7. 12 Feb, 2013 1 commit
  8. 22 Jan, 2013 1 commit
  9. 04 Jan, 2013 1 commit
  10. 14 Dec, 2012 1 commit
  11. 04 Dec, 2012 1 commit
  12. 26 Nov, 2012 1 commit
  13. 23 Nov, 2012 1 commit
  14. 11 Nov, 2012 1 commit
  15. 23 Oct, 2012 4 commits
  16. 21 Oct, 2012 2 commits
  17. 01 Oct, 2012 2 commits
  18. 28 Sep, 2012 2 commits
  19. 27 Sep, 2012 1 commit
  20. 10 Sep, 2012 1 commit
  21. 08 Aug, 2012 1 commit
  22. 07 Aug, 2012 2 commits
  23. 28 Jul, 2012 1 commit
  24. 05 Jul, 2012 1 commit
  25. 20 May, 2012 1 commit
    • Kostya Shishkov's avatar
      mp3: fix start band index for block type 2 in 8kHz audio · b37d945d
      Kostya Shishkov authored
      In hybrid frames long window part ends at 36 samples for most of the cases
      but at 72 for 8kHz case. For some reason decoder assumed it's 48 or even 36
      samples, which caused wrong bitstream decoding for such blocks.
      
      l3_25207.mpg from conformance suite demonstrates it the best.
      b37d945d
  26. 19 May, 2012 2 commits
  27. 08 May, 2012 1 commit
  28. 18 Apr, 2012 1 commit
  29. 13 Apr, 2012 1 commit
  30. 30 Mar, 2012 1 commit
  31. 29 Mar, 2012 1 commit
  32. 28 Mar, 2012 1 commit