1. 26 May, 2013 1 commit
  2. 24 May, 2013 3 commits
  3. 17 May, 2013 2 commits
  4. 16 May, 2013 1 commit
  5. 11 May, 2013 1 commit
  6. 25 Apr, 2013 2 commits
  7. 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
  8. 15 Apr, 2013 1 commit
  9. 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
  10. 19 Mar, 2013 2 commits
  11. 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
  12. 12 Mar, 2013 1 commit
  13. 11 Mar, 2013 1 commit
  14. 08 Mar, 2013 2 commits
  15. 29 Jan, 2013 1 commit
  16. 13 Jan, 2013 1 commit
  17. 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
  18. 04 Dec, 2012 1 commit
  19. 19 Nov, 2012 1 commit
  20. 25 Sep, 2012 1 commit
  21. 14 Sep, 2012 1 commit
  22. 18 Aug, 2012 1 commit
  23. 15 Aug, 2012 1 commit
  24. 22 Jul, 2012 1 commit
  25. 19 Jul, 2012 1 commit
  26. 22 Jun, 2012 1 commit
  27. 14 Jun, 2012 1 commit
  28. 07 May, 2012 1 commit
  29. 21 Apr, 2012 1 commit
  30. 13 Apr, 2012 2 commits
  31. 25 Mar, 2012 2 commits
  32. 24 Mar, 2012 1 commit