1. 23 Mar, 2017 1 commit
  2. 07 Feb, 2017 1 commit
  3. 18 Nov, 2016 1 commit
  4. 27 Jul, 2015 1 commit
  5. 19 Dec, 2014 1 commit
    • Anton Khirnov's avatar
      jvdec: check frame dimensions · 88626e5a
      Anton Khirnov authored
      The frame size must be set by the caller and each dimension must be a
      multiple of 8.
      
      CC: libav-stable@libav.org
      Bug-ID: CVE-2014-8542
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      88626e5a
  6. 18 Jun, 2014 1 commit
  7. 04 Feb, 2014 1 commit
  8. 16 Nov, 2013 1 commit
  9. 31 Jul, 2013 1 commit
  10. 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
  11. 12 Mar, 2013 1 commit
  12. 08 Mar, 2013 1 commit
  13. 04 Dec, 2012 1 commit
  14. 19 Oct, 2012 1 commit
  15. 14 Oct, 2012 1 commit
  16. 08 Oct, 2012 1 commit
  17. 07 Aug, 2012 1 commit
  18. 03 Jul, 2012 5 commits
  19. 28 May, 2012 1 commit
  20. 14 Mar, 2012 1 commit
  21. 15 Feb, 2012 1 commit
  22. 13 Nov, 2011 1 commit
  23. 12 Nov, 2011 2 commits
  24. 15 Sep, 2011 1 commit
  25. 09 Sep, 2011 1 commit
  26. 02 May, 2011 2 commits
  27. 02 Apr, 2011 1 commit
  28. 19 Mar, 2011 1 commit
  29. 14 Mar, 2011 1 commit
  30. 11 Mar, 2011 1 commit