1. 10 Jan, 2016 1 commit
  2. 04 Oct, 2015 1 commit
    • Vittorio Giovara's avatar
      dv: Mark internal frame reference as const · cab63a8b
      Vittorio Giovara authored
      Silence a warning due to frame assignment in dvenc. All uses of the
      reference in dvdec are read only, except the ones in the main decoding
      function, so use the frame pointer directly there.
      cab63a8b
  3. 27 Jul, 2015 2 commits
  4. 25 Jul, 2015 1 commit
  5. 24 Jul, 2015 2 commits
  6. 19 Apr, 2015 1 commit
  7. 27 Feb, 2015 1 commit
  8. 15 Nov, 2014 1 commit
  9. 26 Oct, 2014 1 commit
  10. 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
  11. 19 Sep, 2014 1 commit
  12. 09 Sep, 2014 1 commit
  13. 05 Sep, 2014 1 commit
  14. 02 Aug, 2014 1 commit
  15. 09 Jul, 2014 1 commit
  16. 02 Jul, 2014 1 commit
  17. 30 Jun, 2014 1 commit
  18. 27 Jun, 2014 1 commit
  19. 20 Jun, 2014 2 commits
  20. 09 Dec, 2013 1 commit
  21. 15 Nov, 2013 1 commit
  22. 31 Oct, 2013 1 commit
  23. 28 Oct, 2013 1 commit
  24. 03 Oct, 2013 1 commit
  25. 31 Mar, 2013 1 commit
  26. 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
  27. 08 Mar, 2013 1 commit
  28. 08 Feb, 2013 1 commit
  29. 23 Jan, 2013 1 commit
  30. 04 Dec, 2012 2 commits
  31. 15 Oct, 2012 2 commits
  32. 08 Oct, 2012 1 commit
  33. 07 Aug, 2012 1 commit
  34. 03 Aug, 2012 1 commit
  35. 06 May, 2012 1 commit