1. 06 Jan, 2014 2 commits
    • Anton Khirnov's avatar
      4xm: replace forcing EMU_EDGE by a copy · fe80fa53
      Anton Khirnov authored
      The decoder currently sets CODEC_FLAG_EMU_EDGE and relies on
      get_buffer2() to always provide buffers with linesize == 2 * width.
      This is wrong, since we place no such restriction on get_buffer2()
      implementations.
      
      Fix this by decoding into internal buffers and copying them to output
      frames. Since this is a very obscure decoder, the performance hit should
      not be an issue.
      fe80fa53
    • Anton Khirnov's avatar
      4xm: return a proper error code. · fffca3d2
      Anton Khirnov authored
      fffca3d2
  2. 30 Oct, 2013 1 commit
  3. 03 Oct, 2013 1 commit
  4. 23 Jul, 2013 1 commit
  5. 29 Jun, 2013 2 commits
  6. 12 Jun, 2013 11 commits
  7. 15 May, 2013 1 commit
  8. 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
  9. 08 Mar, 2013 1 commit
  10. 23 Feb, 2013 1 commit
  11. 26 Jan, 2013 3 commits
  12. 23 Jan, 2013 1 commit
  13. 06 Jan, 2013 4 commits
  14. 23 Dec, 2012 1 commit
  15. 22 Dec, 2012 2 commits
  16. 20 Dec, 2012 1 commit
  17. 04 Dec, 2012 2 commits
  18. 20 Nov, 2012 2 commits
  19. 12 Nov, 2012 1 commit
  20. 08 Oct, 2012 1 commit