1. 03 Oct, 2013 1 commit
  2. 25 Jul, 2013 1 commit
  3. 10 Jul, 2013 3 commits
  4. 03 May, 2013 1 commit
  5. 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
  6. 08 Mar, 2013 1 commit
  7. 12 Feb, 2013 1 commit
  8. 04 Feb, 2013 1 commit
  9. 28 Jan, 2013 1 commit
  10. 22 Jan, 2013 1 commit
  11. 04 Dec, 2012 1 commit
  12. 11 Nov, 2012 1 commit
  13. 01 Nov, 2012 1 commit
  14. 25 Oct, 2012 1 commit
  15. 23 Oct, 2012 1 commit
  16. 21 Oct, 2012 1 commit
  17. 12 Oct, 2012 1 commit
  18. 19 Sep, 2012 1 commit
  19. 30 Aug, 2012 1 commit
  20. 27 Aug, 2012 1 commit
  21. 07 Aug, 2012 1 commit
  22. 06 Apr, 2012 1 commit
  23. 28 Mar, 2012 1 commit
  24. 22 Mar, 2012 1 commit
  25. 28 Feb, 2012 1 commit
  26. 17 Dec, 2011 1 commit
    • Ronald S. Bultje's avatar
      get_bits: introduce safe bitreading to prevent overreads. · 8cfbbd92
      Ronald S. Bultje authored
      When turned on, H264/CAVLC gets ~15% (CVPCMNL1_SVA_C.264) slower for
      ultra-high-bitrate files, or ~2.5% (CVFI1_SVA_C.264) for lower-bitrate
      files. Other codecs are affected to a lesser extent because they are
      less optimized; e.g., VC-1 slows down by less than 1% (all on x86).
      The patch generated 3 extra instructions (cmp, cmovae and mov) per
      call to get_bits().
      
      The performance penalty on ARM is within the error margin for most
      files, up to 4% in extreme cases such as CVPCMNL1_SVA_C.264.
      
      Based on work (for GCI) by Aneesh Dogra <lionaneesh@gmail.com>, and
      inspired by patch in Chromium by Chris Evans <cevans@chromium.org>.
      8cfbbd92
  27. 10 Dec, 2011 1 commit
  28. 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
  29. 27 Nov, 2011 1 commit
  30. 28 Oct, 2011 2 commits
  31. 20 Oct, 2011 1 commit
  32. 09 Oct, 2011 1 commit
  33. 07 Oct, 2011 2 commits
  34. 27 Sep, 2011 2 commits