1. 04 Nov, 2017 1 commit
  2. 31 Jan, 2017 1 commit
  3. 13 Jan, 2017 1 commit
  4. 19 Dec, 2016 1 commit
  5. 08 Nov, 2016 1 commit
  6. 18 Aug, 2016 1 commit
    • Anton Khirnov's avatar
      alac: do not return success if nothing was decoded · 796dca02
      Anton Khirnov authored
      If we encounter an END element before anything is decoded, we would
      return success even though the output frame has not been allocated,
      which is invalid.
      
      CC: libav-stable@libav.org
      Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      796dca02
  7. 05 May, 2016 1 commit
  8. 04 May, 2016 1 commit
  9. 04 Dec, 2015 1 commit
  10. 06 Oct, 2015 1 commit
  11. 04 Oct, 2015 2 commits
  12. 06 Sep, 2015 1 commit
  13. 27 Jul, 2015 1 commit
  14. 13 Jul, 2015 1 commit
  15. 08 May, 2015 1 commit
  16. 23 Apr, 2015 1 commit
  17. 14 Feb, 2015 1 commit
  18. 18 Aug, 2014 1 commit
  19. 22 Mar, 2014 1 commit
  20. 11 Jan, 2014 2 commits
  21. 03 Oct, 2013 1 commit
  22. 29 Sep, 2013 1 commit
  23. 03 Sep, 2013 2 commits
    • Martin Storsjö's avatar
      alac: Check that the channels fit at the given offset · 35cbc98b
      Martin Storsjö authored
      The code tries to decode a number of channels at the
      offset given by the ff_alac_channel_layout_offsets table.
      Even if the number of channels decoded so far doesn't
      exceed the total number of channels, we need to check that
      we actually can decode that number of channels at this offset
      as well.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      35cbc98b
    • Martin Storsjö's avatar
      alac: Limit max_samples_per_frame · f7c58831
      Martin Storsjö authored
      Otherwise buffer size calculations in allocate_buffers could
      overflow later, making the code think a large enough buffer
      actually was allocated.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      f7c58831
  24. 13 Jun, 2013 1 commit
  25. 06 Jun, 2013 1 commit
  26. 05 Jun, 2013 1 commit
  27. 29 May, 2013 1 commit
  28. 19 Mar, 2013 1 commit
  29. 13 Mar, 2013 2 commits
    • Diego Biurrun's avatar
    • 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
  30. 08 Mar, 2013 1 commit
  31. 12 Feb, 2013 1 commit
  32. 22 Dec, 2012 1 commit
  33. 05 Dec, 2012 1 commit
  34. 04 Dec, 2012 1 commit
  35. 13 Nov, 2012 1 commit
  36. 11 Nov, 2012 1 commit