1. 03 Oct, 2017 1 commit
  2. 07 May, 2017 1 commit
  3. 23 Mar, 2017 1 commit
  4. 18 Nov, 2016 1 commit
  5. 29 Sep, 2016 1 commit
  6. 04 May, 2016 1 commit
  7. 27 Jul, 2015 2 commits
  8. 12 Jun, 2015 1 commit
  9. 23 Feb, 2015 1 commit
  10. 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
  11. 11 Oct, 2014 1 commit
  12. 27 Jul, 2014 1 commit
  13. 18 Jul, 2014 1 commit
  14. 30 Jun, 2014 1 commit
  15. 23 Jun, 2014 1 commit
  16. 18 Jun, 2014 1 commit
  17. 07 May, 2014 1 commit
  18. 16 Nov, 2013 1 commit
  19. 31 Oct, 2013 1 commit
  20. 03 Oct, 2013 1 commit
  21. 03 May, 2013 1 commit
  22. 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
  23. 08 Mar, 2013 2 commits
  24. 25 Feb, 2013 1 commit
  25. 23 Jan, 2013 1 commit
  26. 04 Dec, 2012 3 commits
  27. 17 Nov, 2012 2 commits
  28. 08 Oct, 2012 1 commit
  29. 07 Aug, 2012 1 commit
  30. 02 Aug, 2012 2 commits
  31. 29 Jul, 2012 2 commits
  32. 06 Apr, 2012 1 commit
  33. 13 Mar, 2012 1 commit