1. 26 Oct, 2014 1 commit
  2. 15 Oct, 2014 1 commit
    • Anton Khirnov's avatar
      lavc: deprecate the use of AVCodecContext.time_base for decoding · 7ea1b347
      Anton Khirnov authored
      When decoding, this field holds the inverse of the framerate that can be
      written in the headers for some codecs. Using a field called 'time_base'
      for this is very misleading, as there are no timestamps associated with
      it. Furthermore, this field is used for a very different purpose during
      encoding.
      
      Add a new field, called 'framerate', to replace the use of time_base for
      decoding.
      7ea1b347
  3. 19 Sep, 2014 1 commit
  4. 09 Sep, 2014 1 commit
  5. 05 Sep, 2014 1 commit
  6. 02 Aug, 2014 1 commit
  7. 09 Jul, 2014 1 commit
  8. 02 Jul, 2014 1 commit
  9. 30 Jun, 2014 1 commit
  10. 27 Jun, 2014 1 commit
  11. 20 Jun, 2014 2 commits
  12. 09 Dec, 2013 1 commit
  13. 15 Nov, 2013 1 commit
  14. 31 Oct, 2013 1 commit
  15. 28 Oct, 2013 1 commit
  16. 03 Oct, 2013 1 commit
  17. 31 Mar, 2013 1 commit
  18. 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
  19. 08 Mar, 2013 1 commit
  20. 08 Feb, 2013 1 commit
  21. 23 Jan, 2013 1 commit
  22. 04 Dec, 2012 2 commits
  23. 15 Oct, 2012 2 commits
  24. 08 Oct, 2012 1 commit
  25. 07 Aug, 2012 1 commit
  26. 03 Aug, 2012 1 commit
  27. 06 May, 2012 1 commit
  28. 22 Apr, 2012 1 commit
    • Michael Niedermayer's avatar
      lowres2 support. · 70d54392
      Michael Niedermayer authored
      The new lowres support is limited to decoders where lowres decoding
      is possible in high quality.
      I was not able to measure any speed difference, but if one is found
      the 2-3 lines that might affect speed can be made compile time conditional
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      70d54392
  29. 21 Apr, 2012 1 commit
  30. 16 Apr, 2012 2 commits
  31. 06 Apr, 2012 1 commit
  32. 28 Mar, 2012 1 commit
  33. 27 Mar, 2012 1 commit