1. 27 Feb, 2014 1 commit
  2. 15 Nov, 2013 1 commit
  3. 31 Oct, 2013 1 commit
  4. 15 Oct, 2013 1 commit
  5. 03 Oct, 2013 1 commit
  6. 29 Sep, 2013 1 commit
  7. 28 Sep, 2013 1 commit
  8. 16 Sep, 2013 1 commit
  9. 21 May, 2013 1 commit
  10. 19 Apr, 2013 1 commit
  11. 15 Apr, 2013 1 commit
  12. 08 Apr, 2013 1 commit
  13. 27 Mar, 2013 1 commit
  14. 13 Mar, 2013 2 commits
    • 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
    • Ronald S. Bultje's avatar
      vp3: use hpeldsp instead of dsputil for half-pel functions. · d1293512
      Ronald S. Bultje authored
      This makes vp3 independent of dsputil.
      d1293512
  15. 12 Mar, 2013 1 commit
  16. 10 Mar, 2013 1 commit
  17. 08 Mar, 2013 1 commit
  18. 28 Jan, 2013 1 commit
  19. 23 Jan, 2013 1 commit
  20. 22 Jan, 2013 1 commit
  21. 21 Jan, 2013 1 commit
  22. 20 Jan, 2013 3 commits
  23. 17 Jan, 2013 1 commit
    • Martin Storsjö's avatar
      theora: Skip zero-sized headers · e33db35b
      Martin Storsjö authored
      This fixes a regression since d9cf5f51 with theora over RTP
      (possibly with other variants of theora as well).
      
      In theora over RTP, the second of the 3 headers turns out to be
      0 bytes long, which prior to d9cf5f51 worked just fine. After
      d9cf5f51, reading from the bitstream reader fails (since the reader
      wasn't initialized but returned an error if initialized with 0 bits).
      
      CC: libav-stable@libav.org
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      e33db35b
  24. 10 Jan, 2013 1 commit
  25. 20 Dec, 2012 1 commit
  26. 04 Dec, 2012 1 commit
  27. 21 Nov, 2012 1 commit
  28. 13 Nov, 2012 1 commit
  29. 12 Nov, 2012 1 commit
  30. 08 Oct, 2012 1 commit
  31. 01 Oct, 2012 1 commit
  32. 07 Aug, 2012 1 commit
  33. 18 Jul, 2012 1 commit
  34. 17 Jun, 2012 1 commit
  35. 13 Apr, 2012 2 commits
  36. 06 Apr, 2012 1 commit