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