1. 27 Jul, 2015 1 commit
  2. 13 Mar, 2015 1 commit
  3. 31 Jan, 2014 2 commits
  4. 09 Dec, 2013 1 commit
  5. 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
  6. 08 Mar, 2013 1 commit
  7. 04 Dec, 2012 2 commits
  8. 07 Aug, 2012 1 commit
  9. 25 May, 2012 1 commit
    • Michael Niedermayer's avatar
      Revert "removing lowres support" · 5e50a572
      Michael Niedermayer authored
      There have been multiple user complaints about loosing this feature
      while its not clear the 3% speedloss claims where real or fabricated.
      My own testing indicates no statistically significant speed difference
      both with mpeg2 and mpeg4, and if at all the code with lowres support
      is a tiny bit faster than without.
      
      This reverts commit 92ef4be4, reversing
      changes made to 2e07f429.
      
      Conflicts:
      
      	cmdutils.c
      	libavcodec/arm/vp8dsp_init_arm.c
      	libavcodec/mpegvideo.c
      	libavcodec/mpegvideo.h
      	libavutil/arm/Makefile
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      5e50a572
  10. 21 Apr, 2012 1 commit
  11. 06 Apr, 2012 1 commit
  12. 22 Oct, 2011 1 commit
  13. 31 Aug, 2011 1 commit
  14. 11 Aug, 2011 1 commit
  15. 02 May, 2011 2 commits
  16. 26 Apr, 2011 1 commit
  17. 30 Mar, 2011 1 commit