1. 19 Mar, 2013 2 commits
  2. 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
  3. 12 Mar, 2013 1 commit
  4. 11 Mar, 2013 1 commit
  5. 08 Mar, 2013 2 commits
  6. 29 Jan, 2013 1 commit
  7. 13 Jan, 2013 1 commit
  8. 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
  9. 04 Dec, 2012 1 commit
  10. 19 Nov, 2012 1 commit
  11. 25 Sep, 2012 1 commit
  12. 14 Sep, 2012 1 commit
  13. 18 Aug, 2012 1 commit
  14. 15 Aug, 2012 1 commit
  15. 22 Jul, 2012 1 commit
  16. 19 Jul, 2012 1 commit
  17. 22 Jun, 2012 1 commit
  18. 14 Jun, 2012 1 commit
  19. 07 May, 2012 1 commit
  20. 21 Apr, 2012 1 commit
  21. 13 Apr, 2012 2 commits
  22. 25 Mar, 2012 2 commits
  23. 24 Mar, 2012 3 commits
  24. 23 Mar, 2012 1 commit
  25. 17 Mar, 2012 1 commit
  26. 16 Mar, 2012 1 commit
  27. 04 Mar, 2012 1 commit
    • Anton Khirnov's avatar
      lavc: deprecate AVCodecContext.sub_id. · 02beb982
      Anton Khirnov authored
      In most places where it's used, it's as a pointless write-only field.
      
      Only rv10 decoder actually reads from it, but it stores some internal
      version info in it. There is no reason for it to be in a public field.
      02beb982
  28. 27 Feb, 2012 1 commit
  29. 12 Feb, 2012 2 commits
  30. 23 Jan, 2012 2 commits
  31. 22 Jan, 2012 1 commit
  32. 21 Jan, 2012 1 commit