1. 20 12月, 2014 1 次提交
  2. 19 12月, 2014 1 次提交
  3. 14 12月, 2014 1 次提交
  4. 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
  5. 24 8月, 2014 1 次提交
  6. 15 8月, 2014 1 次提交
  7. 10 7月, 2014 1 次提交
  8. 20 6月, 2014 1 次提交
  9. 08 6月, 2014 1 次提交
  10. 03 6月, 2014 2 次提交
  11. 28 5月, 2014 1 次提交
  12. 02 4月, 2014 1 次提交
  13. 22 3月, 2014 1 次提交
  14. 28 2月, 2014 1 次提交
  15. 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
  16. 01 11月, 2013 1 次提交
  17. 16 10月, 2013 1 次提交
  18. 04 10月, 2013 1 次提交
  19. 29 9月, 2013 1 次提交
  20. 28 9月, 2013 1 次提交
  21. 16 9月, 2013 1 次提交
  22. 22 5月, 2013 1 次提交
  23. 20 4月, 2013 1 次提交
  24. 15 4月, 2013 1 次提交
  25. 08 4月, 2013 1 次提交
  26. 28 3月, 2013 1 次提交
  27. 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
  28. 13 3月, 2013 2 次提交
  29. 10 3月, 2013 1 次提交
  30. 08 3月, 2013 1 次提交
  31. 29 1月, 2013 1 次提交
  32. 23 1月, 2013 1 次提交
  33. 22 1月, 2013 2 次提交
  34. 21 1月, 2013 1 次提交
  35. 20 1月, 2013 2 次提交
  36. 18 1月, 2013 1 次提交
    • M
      theora: Skip zero-sized headers · e33db35b
      Martin Storsjö 提交于
      This fixes a regression since d9cf5f51 with theora over RTP
      (possibly with other variants of theora as well).
      
      In theora over RTP, the second of the 3 headers turns out to be
      0 bytes long, which prior to d9cf5f51 worked just fine. After
      d9cf5f51, reading from the bitstream reader fails (since the reader
      wasn't initialized but returned an error if initialized with 0 bits).
      
      CC: libav-stable@libav.org
      Signed-off-by: NMartin Storsjö <martin@martin.st>
      e33db35b