1. 04 Oct, 2013 1 commit
  2. 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
  3. 05 Dec, 2012 1 commit
  4. 29 Oct, 2012 1 commit
  5. 25 Jul, 2012 1 commit
    • Carl Eugen Hoyos's avatar
      Fix avui stream-copy. · 20e88d86
      Carl Eugen Hoyos authored
      The native decoder and MPlayer's binary decoder only need the
      APRG atom, QuickTime at least requires also the ARES atom and
      four additional 0 bytes padding at the end of stsd.
      20e88d86
  6. 28 May, 2012 1 commit
  7. 19 May, 2012 4 commits
  8. 16 May, 2012 1 commit
  9. 08 May, 2012 1 commit
  10. 05 Feb, 2012 2 commits
  11. 04 Jan, 2012 2 commits
  12. 03 Jan, 2012 1 commit
  13. 30 Dec, 2011 1 commit
  14. 28 Dec, 2011 2 commits
  15. 22 Dec, 2011 1 commit
  16. 14 Dec, 2011 1 commit
  17. 13 Dec, 2011 1 commit