1. 30 Jun, 2014 1 commit
  2. 22 Mar, 2014 1 commit
    • Diego Biurrun's avatar
      nuv: Reuse the DSPContext from RTJpegContext · 1df0b061
      Diego Biurrun authored
      There is no point in populating NuvContext with another DSPContext.
      
      Also split static and dynamic initialization bits to avoid running the
      static initialization parts over and over.
      1df0b061
  3. 13 Mar, 2014 1 commit
  4. 18 Dec, 2013 1 commit
  5. 16 Nov, 2013 1 commit
  6. 03 Oct, 2013 1 commit
  7. 07 Sep, 2013 1 commit
  8. 13 Aug, 2013 4 commits
    • Luca Barbato's avatar
      nuv: Use av_fast_realloc · 2df0776c
      Luca Barbato authored
      The decompressed buffer can be used after codec_reinit, so it must be
      preserved.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      2df0776c
    • Luca Barbato's avatar
      nuv: Reset the frame on resize · feaaf5f7
      Luca Barbato authored
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      feaaf5f7
    • Luca Barbato's avatar
      nuv: Pad the lzo outbuf · 075dbc18
      Luca Barbato authored
      And properly update the buf_size with the correct size.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      075dbc18
    • Luca Barbato's avatar
      nuv: Do not ignore lzo decompression failures · aae159a7
      Luca Barbato authored
      Update the fate reference since the last broken frame is not decoded
      anymore.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      aae159a7
  9. 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
  10. 08 Mar, 2013 1 commit
  11. 25 Feb, 2013 1 commit
  12. 06 Feb, 2013 1 commit
  13. 14 Jan, 2013 2 commits
  14. 13 Dec, 2012 1 commit
  15. 04 Dec, 2012 1 commit
  16. 08 Oct, 2012 1 commit
  17. 15 Aug, 2012 1 commit
  18. 07 Aug, 2012 1 commit
  19. 06 Aug, 2012 3 commits
  20. 01 Aug, 2012 2 commits
  21. 17 Apr, 2012 1 commit
  22. 06 Apr, 2012 1 commit
  23. 15 Feb, 2012 2 commits
  24. 28 Jan, 2012 1 commit
  25. 26 Nov, 2011 2 commits
  26. 05 Nov, 2011 4 commits
  27. 29 Jul, 2011 1 commit
  28. 23 Jun, 2011 1 commit