1. 27 Jul, 2015 2 commits
  2. 04 Nov, 2013 2 commits
  3. 31 Oct, 2013 1 commit
  4. 22 Oct, 2013 1 commit
  5. 21 Oct, 2013 1 commit
  6. 13 Oct, 2013 1 commit
  7. 02 Aug, 2013 1 commit
  8. 16 Jul, 2013 1 commit
  9. 30 Jun, 2013 1 commit
  10. 05 Jun, 2013 1 commit
  11. 28 May, 2013 1 commit
  12. 26 May, 2013 1 commit
  13. 24 May, 2013 3 commits
  14. 17 May, 2013 2 commits
  15. 16 May, 2013 1 commit
  16. 11 May, 2013 1 commit
  17. 25 Apr, 2013 2 commits
  18. 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
  19. 15 Apr, 2013 1 commit
  20. 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
  21. 19 Mar, 2013 2 commits
  22. 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
  23. 12 Mar, 2013 1 commit
  24. 11 Mar, 2013 1 commit
  25. 08 Mar, 2013 2 commits
  26. 29 Jan, 2013 1 commit
  27. 13 Jan, 2013 1 commit
  28. 23 Dec, 2012 1 commit
    • Clément Bœsch's avatar
      lavc/pthread: do not re-define _GNU_SOURCE if already defined. · 98dc2567
      Clément Bœsch authored
      This fixes the following warning with GCC:
          libavcodec/pthread.c:35:0: warning: _GNU_SOURCE redefined [enabled by default]
          <command-line>::0: note: this is the location of the previous definition
      
      The reason of the presence of this flag is:
          % pkg-config --cflags sdl
          -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL
      98dc2567
  29. 04 Dec, 2012 1 commit
  30. 19 Nov, 2012 1 commit
  31. 25 Sep, 2012 1 commit
  32. 14 Sep, 2012 1 commit