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