1. 11 Sep, 2015 1 commit
  2. 27 Jul, 2015 1 commit
  3. 19 Dec, 2014 1 commit
    • Anton Khirnov's avatar
      mmvideo: check frame dimensions · 17ba719d
      Anton Khirnov authored
      The frame size must be set by the caller and each dimension must be a
      multiple of 2.
      
      CC: libav-stable@libav.org
      Bug-ID: CVE-2014-8543
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      17ba719d
  4. 08 Oct, 2014 1 commit
  5. 03 Oct, 2014 1 commit
  6. 05 Aug, 2014 1 commit
  7. 02 Aug, 2014 1 commit
  8. 16 Nov, 2013 1 commit
  9. 27 Oct, 2013 1 commit
  10. 03 Oct, 2013 1 commit
  11. 02 May, 2013 2 commits
  12. 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
  13. 08 Mar, 2013 2 commits
  14. 04 Dec, 2012 1 commit
  15. 21 Nov, 2012 1 commit
  16. 14 Oct, 2012 1 commit
  17. 08 Oct, 2012 1 commit
  18. 24 Sep, 2012 1 commit
  19. 07 Aug, 2012 1 commit
  20. 31 Jul, 2012 1 commit
  21. 07 May, 2012 1 commit
  22. 06 Apr, 2012 1 commit
  23. 13 Mar, 2012 2 commits
  24. 07 Mar, 2012 1 commit
  25. 04 Mar, 2012 1 commit
  26. 12 Nov, 2011 1 commit
  27. 05 Nov, 2011 1 commit
  28. 29 Jul, 2011 1 commit
  29. 07 May, 2011 1 commit
    • Stefano Sabatini's avatar
      lavc: set defaults in internal codec frames · 01042d41
      Stefano Sabatini authored
      This is required specifically for setting frame->format to -1,
      otherwise it will be set to 0 = PIX_FMT_YUV420P and code reading
      the format from the output decoded frame will get misled.
      
      In particular fix regressions occurring with the pending vsrc_buffer
      patch.
      01042d41
  30. 19 Mar, 2011 1 commit
  31. 14 Mar, 2011 1 commit
  32. 13 Mar, 2011 1 commit
  33. 28 Jan, 2011 1 commit
  34. 26 Jan, 2011 1 commit
  35. 10 Jan, 2011 2 commits
  36. 20 Apr, 2010 1 commit