1. 27 Jul, 2015 2 commits
  2. 01 Jul, 2015 1 commit
  3. 31 May, 2015 1 commit
  4. 19 May, 2015 1 commit
  5. 15 Aug, 2014 1 commit
  6. 23 Jun, 2014 1 commit
  7. 29 May, 2014 1 commit
  8. 09 Apr, 2014 1 commit
  9. 10 Jan, 2014 1 commit
  10. 09 Jan, 2014 1 commit
    • Anton Khirnov's avatar
      mpegvideo: drop support for real (non-emulated) edges · ebfe622b
      Anton Khirnov authored
      Several decoders disable those anyway and they are not measurably faster
      on x86. They might be somewhat faster on other platforms due to missing
      emu edge SIMD, but the gain is not large enough (and those decoders
      relevant enough) to justify the added complexity.
      ebfe622b
  11. 31 Dec, 2013 1 commit
  12. 05 Dec, 2013 1 commit
    • Anton Khirnov's avatar
      mpegvideo: do not set current_picture_ptr in decoders · 66499f34
      Anton Khirnov authored
      This code was originally added in
      5f194811 to h263 to set decoded frame
      pts to some random numbers (removed in
      a1c5cc42) and then cargo culted to other
      decoders.
      
      The code is left in h263dec for now, since some part of the decoder
      (apparently OBMC) relies on the specific previous frame to be reused.
      66499f34
  13. 29 Nov, 2013 1 commit
  14. 16 Nov, 2013 1 commit
  15. 05 Nov, 2013 1 commit
  16. 03 Oct, 2013 1 commit
  17. 31 Jul, 2013 1 commit
  18. 15 May, 2013 1 commit
  19. 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
  20. 08 Mar, 2013 1 commit
  21. 07 Mar, 2013 1 commit
  22. 15 Feb, 2013 1 commit
  23. 21 Jan, 2013 1 commit
  24. 06 Jan, 2013 1 commit
  25. 04 Dec, 2012 2 commits
  26. 11 Nov, 2012 3 commits
  27. 08 Oct, 2012 1 commit
  28. 06 Sep, 2012 2 commits
  29. 03 Sep, 2012 2 commits
  30. 31 Aug, 2012 2 commits