1. 06 Jan, 2014 1 commit
  2. 10 Dec, 2013 1 commit
  3. 09 Dec, 2013 1 commit
  4. 25 Nov, 2013 1 commit
  5. 18 Nov, 2013 1 commit
  6. 04 Nov, 2013 4 commits
  7. 31 Oct, 2013 1 commit
  8. 22 Oct, 2013 1 commit
  9. 21 Oct, 2013 1 commit
  10. 13 Oct, 2013 1 commit
  11. 02 Aug, 2013 1 commit
  12. 16 Jul, 2013 1 commit
  13. 30 Jun, 2013 1 commit
  14. 05 Jun, 2013 1 commit
  15. 28 May, 2013 1 commit
  16. 26 May, 2013 1 commit
  17. 24 May, 2013 3 commits
  18. 17 May, 2013 2 commits
  19. 16 May, 2013 1 commit
  20. 11 May, 2013 1 commit
  21. 25 Apr, 2013 2 commits
  22. 22 Apr, 2013 1 commit
    • Janne Grunau's avatar
      threads: always call thread_finish_setup for intra codecs · 94660c35
      Janne Grunau authored
      Intra codecs do not need an update_thread_context() function and never
      call ff_thread_finish_setup(). They rely on ff_thread_get_buffer()
      calling it. So call it even if the get_buffer2 function pointer is
      avcodec_default_get_buffer2 and it has not been called before.
      94660c35
  23. 15 Apr, 2013 1 commit
  24. 26 Mar, 2013 1 commit
    • Janne Grunau's avatar
      hwaccel: fix use with frame based multithreading · 05fa79b8
      Janne Grunau authored
      Allows use of AVHWAccel based decoders with frame based multithreading.
      The decoders will be forced into an non-concurrent mode by delaying
      ff_thread_finish_setup() calls after decoding of the current frame
      is finished.
      
      This wastes memory by unnecessarily using multiple threads and thus
      copies of the decoder context but allows seamless switching between
      hardware accelerated and frame threaded software decoding when the
      hardware decoder does not support the stream.
      05fa79b8
  25. 19 Mar, 2013 2 commits
  26. 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
  27. 12 Mar, 2013 1 commit
  28. 11 Mar, 2013 1 commit
  29. 08 Mar, 2013 2 commits
  30. 29 Jan, 2013 1 commit
  31. 13 Jan, 2013 1 commit