1. 07 Jun, 2016 1 commit
  2. 04 Sep, 2015 1 commit
  3. 27 Jul, 2015 2 commits
  4. 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
  5. 18 Jul, 2014 1 commit
  6. 30 Jun, 2014 1 commit
  7. 31 Oct, 2013 1 commit
  8. 03 Oct, 2013 1 commit
  9. 05 Aug, 2013 1 commit
  10. 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
  11. 08 Mar, 2013 1 commit
  12. 26 Jan, 2013 2 commits
  13. 23 Jan, 2013 1 commit
  14. 04 Dec, 2012 2 commits
  15. 14 Oct, 2012 2 commits
  16. 08 Oct, 2012 1 commit
  17. 07 Aug, 2012 1 commit
  18. 29 Jul, 2012 1 commit
    • Mans Rullgard's avatar
      eamad/eatgq/eatqi: call special EA IDCT directly · f3eb0083
      Mans Rullgard authored
      These decoders use a special non-MPEG2 IDCT.  Call it directly
      instead of going through dsputil.  There is never any reason
      to use a regular IDCT with these decoders or to use the EA IDCT
      with other codecs.
      
      This also fixes the bizarre situation of eamad and eatqi decoding
      incorrectly if eatgq is disabled.
      Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
      f3eb0083
  19. 06 Apr, 2012 1 commit
  20. 21 Mar, 2012 1 commit
  21. 13 Mar, 2012 1 commit
  22. 07 Mar, 2012 1 commit
  23. 01 Mar, 2012 1 commit
  24. 15 Feb, 2012 1 commit
  25. 22 Dec, 2011 1 commit
  26. 29 Jul, 2011 1 commit
  27. 02 May, 2011 2 commits
  28. 19 Mar, 2011 1 commit
  29. 28 Jan, 2011 1 commit
  30. 26 Jan, 2011 1 commit
  31. 20 Apr, 2010 1 commit
  32. 30 Mar, 2010 1 commit
  33. 06 Mar, 2010 1 commit
  34. 22 Jan, 2010 1 commit
  35. 22 May, 2009 1 commit