1. 04 9月, 2015 1 次提交
  2. 27 7月, 2015 2 次提交
  3. 14 7月, 2015 1 次提交
  4. 15 5月, 2015 1 次提交
  5. 19 4月, 2015 1 次提交
  6. 06 2月, 2015 1 次提交
  7. 31 1月, 2015 1 次提交
  8. 20 12月, 2014 1 次提交
  9. 19 12月, 2014 1 次提交
  10. 14 12月, 2014 1 次提交
  11. 15 10月, 2014 1 次提交
    • A
      lavc: deprecate the use of AVCodecContext.time_base for decoding · 7ea1b347
      Anton Khirnov 提交于
      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
  12. 24 8月, 2014 1 次提交
  13. 15 8月, 2014 1 次提交
  14. 10 7月, 2014 1 次提交
  15. 20 6月, 2014 1 次提交
  16. 08 6月, 2014 1 次提交
  17. 03 6月, 2014 2 次提交
  18. 28 5月, 2014 1 次提交
  19. 02 4月, 2014 1 次提交
  20. 22 3月, 2014 1 次提交
  21. 28 2月, 2014 1 次提交
  22. 15 11月, 2013 1 次提交
    • R
      lavc: Edge emulation with dst/src linesize · 458446ac
      Ronald S. Bultje 提交于
      Allow supporting files for which the image stride is smaller than
      the maximum block size + number of subpel mc taps, e.g. a 64x64 VP9
      file or a 16x16 VP8 file with -fflags +emu_edge.
      458446ac
  23. 01 11月, 2013 1 次提交
  24. 16 10月, 2013 1 次提交
  25. 04 10月, 2013 1 次提交
  26. 29 9月, 2013 1 次提交
  27. 28 9月, 2013 1 次提交
  28. 16 9月, 2013 1 次提交
  29. 22 5月, 2013 1 次提交
  30. 20 4月, 2013 1 次提交
  31. 15 4月, 2013 1 次提交
  32. 08 4月, 2013 1 次提交
  33. 28 3月, 2013 1 次提交
  34. 14 3月, 2013 1 次提交
    • C
      lavc: factorize ff_{thread_,re,}get_buffer error messages. · 1ec94b0f
      Clément Bœsch 提交于
      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
  35. 13 3月, 2013 2 次提交
  36. 10 3月, 2013 1 次提交
  37. 08 3月, 2013 1 次提交