1. 04 Sep, 2019 1 commit
    • James Almer's avatar
      avcodec/decode: add a flags parameter to ff_reget_buffer() · 9ea6d214
      James Almer authored
      Some decoders may not need a writable buffer in some specific cases, but only
      a reference to the existing buffer with updated frame properties instead, for
      the purpose of returning duplicate frames. For this, the
      FF_REGET_BUFFER_FLAG_READONLY flag is added, which will prevent potential
      allocations and buffer copies when they are not needed.
      Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
      9ea6d214
  2. 05 Aug, 2019 1 commit
  3. 26 Jun, 2019 1 commit
  4. 16 Jun, 2019 1 commit
  5. 12 May, 2019 1 commit
  6. 01 Jan, 2019 1 commit
  7. 22 Jul, 2018 2 commits
  8. 03 Oct, 2017 1 commit
  9. 05 Jul, 2017 1 commit
  10. 02 May, 2017 1 commit
  11. 23 Mar, 2017 1 commit
  12. 18 Nov, 2016 1 commit
  13. 07 Jun, 2016 1 commit
  14. 04 May, 2016 1 commit
  15. 27 Jul, 2015 1 commit
  16. 03 Jun, 2015 1 commit
    • Luca Barbato's avatar
      bink: Factorize bink put_pixel · 7f596368
      Luca Barbato authored
      And make sure to check INTER_BLOCK as had been fixed by Michael
      Niedermayer.
      
      Reported-By: Andreas Cadhalpun
      CC: libav-stable@libav.org
      7f596368
  17. 18 Jun, 2014 1 commit
  18. 02 Jun, 2014 1 commit
  19. 29 May, 2014 1 commit
  20. 15 Dec, 2013 1 commit
  21. 30 Oct, 2013 1 commit
  22. 03 Oct, 2013 1 commit
  23. 12 Aug, 2013 1 commit
  24. 05 Aug, 2013 1 commit
  25. 04 May, 2013 1 commit
  26. 19 Apr, 2013 1 commit
  27. 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
  28. 08 Mar, 2013 1 commit
  29. 08 Feb, 2013 1 commit
  30. 06 Feb, 2013 1 commit
  31. 01 Feb, 2013 1 commit
  32. 23 Jan, 2013 1 commit
  33. 21 Jan, 2013 1 commit
  34. 06 Jan, 2013 2 commits
  35. 04 Dec, 2012 2 commits
  36. 23 Nov, 2012 1 commit