1. 11 Jan, 2014 2 commits
  2. 03 Oct, 2013 1 commit
  3. 29 Sep, 2013 1 commit
  4. 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
  5. 13 Jun, 2013 1 commit
  6. 06 Jun, 2013 1 commit
  7. 05 Jun, 2013 1 commit
  8. 29 May, 2013 1 commit
  9. 19 Mar, 2013 1 commit
  10. 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
  11. 08 Mar, 2013 1 commit
  12. 12 Feb, 2013 1 commit
  13. 22 Dec, 2012 1 commit
  14. 05 Dec, 2012 1 commit
  15. 04 Dec, 2012 1 commit
  16. 13 Nov, 2012 1 commit
  17. 11 Nov, 2012 1 commit
  18. 10 Nov, 2012 4 commits
  19. 22 Oct, 2012 1 commit
  20. 01 Sep, 2012 1 commit
  21. 07 Aug, 2012 1 commit
  22. 01 Aug, 2012 1 commit
  23. 27 Jul, 2012 2 commits
  24. 21 Jul, 2012 1 commit
  25. 20 Jul, 2012 3 commits
  26. 19 Jul, 2012 6 commits