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