1. 27 Jul, 2015 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. 04 Feb, 2014 1 commit
  4. 03 Jan, 2014 1 commit
  5. 31 Oct, 2013 1 commit
  6. 03 Oct, 2013 1 commit
  7. 17 Sep, 2013 1 commit
  8. 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
  9. 08 Mar, 2013 1 commit
  10. 25 Jan, 2013 1 commit
  11. 04 Dec, 2012 2 commits
  12. 14 Oct, 2012 1 commit
  13. 08 Oct, 2012 1 commit
  14. 15 Aug, 2012 1 commit
  15. 07 Aug, 2012 1 commit
  16. 06 Apr, 2012 1 commit
  17. 28 Jan, 2012 1 commit
  18. 12 Nov, 2011 1 commit
  19. 08 Nov, 2011 1 commit
  20. 05 Nov, 2011 1 commit
  21. 10 Oct, 2011 2 commits
  22. 01 Oct, 2011 3 commits
  23. 29 Jul, 2011 1 commit
  24. 07 May, 2011 1 commit
    • Stefano Sabatini's avatar
      lavc: set defaults in internal codec frames · 01042d41
      Stefano Sabatini authored
      This is required specifically for setting frame->format to -1,
      otherwise it will be set to 0 = PIX_FMT_YUV420P and code reading
      the format from the output decoded frame will get misled.
      
      In particular fix regressions occurring with the pending vsrc_buffer
      patch.
      01042d41
  25. 02 May, 2011 2 commits
  26. 19 Mar, 2011 1 commit
  27. 16 Feb, 2011 1 commit
  28. 15 Feb, 2011 1 commit
    • Reinhard Tartler's avatar
      Merge libavcore into libavutil · 737eb597
      Reinhard Tartler authored
      It is pretty hopeless that other considerable projects will adopt
      libavutil alone in other projects. Projects that need small footprint
      are better off with more specialized libraries such as gnulib or rather
      just copy the necessary parts that they need. With this in mind, nobody
      is helped by having libavutil and libavcore split. In order to ease
      maintenance inside and around FFmpeg and to reduce confusion where to
      put common code, avcore's functionality is merged (back) to avutil.
      Signed-off-by: 's avatarReinhard Tartler <siretart@tauware.de>
      737eb597
  29. 28 Jan, 2011 1 commit
  30. 26 Jan, 2011 1 commit
  31. 09 Jan, 2011 2 commits
  32. 07 Sep, 2010 1 commit
  33. 06 Aug, 2010 1 commit
  34. 20 Apr, 2010 1 commit