1. 19 Apr, 2015 1 commit
  2. 13 Oct, 2014 1 commit
    • Anton Khirnov's avatar
      lavc: use a separate field for exporting audio encoder padding · 2df0c32e
      Anton Khirnov authored
      Currently, the amount of padding inserted at the beginning by some audio
      encoders, is exported through AVCodecContext.delay. However
      - the term 'delay' is heavily overloaded and can have multiple different
        meanings even in the case of audio encoding.
      - this field has entirely different meanings, depending on whether the
        codec context is used for encoding or decoding (and has yet another
        different meaning for video), preventing generic handling of the codec
        context.
      
      Therefore, add a new field -- AVCodecContext.initial_padding. It could
      conceivably be used for decoding as well at a later point.
      2df0c32e
  3. 24 Aug, 2014 1 commit
  4. 08 Apr, 2014 1 commit
  5. 23 Dec, 2013 1 commit
  6. 03 Oct, 2013 1 commit
  7. 04 Jul, 2013 1 commit
  8. 13 Mar, 2013 2 commits
    • Diego Biurrun's avatar
    • 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. 09 Mar, 2013 1 commit
  10. 08 Mar, 2013 2 commits
  11. 06 Mar, 2013 1 commit
  12. 17 Feb, 2013 3 commits
  13. 12 Feb, 2013 1 commit
  14. 14 Jan, 2013 2 commits
  15. 04 Dec, 2012 1 commit
  16. 24 Nov, 2012 1 commit
  17. 11 Nov, 2012 1 commit
  18. 08 Nov, 2012 1 commit
  19. 06 Nov, 2012 1 commit
  20. 03 Nov, 2012 1 commit
  21. 02 Nov, 2012 2 commits
  22. 01 Nov, 2012 1 commit
  23. 04 Sep, 2012 1 commit
  24. 15 Aug, 2012 1 commit
  25. 07 Aug, 2012 1 commit
  26. 30 Jul, 2012 1 commit
  27. 06 Apr, 2012 1 commit
  28. 23 Mar, 2012 1 commit
  29. 22 Mar, 2012 1 commit
  30. 21 Mar, 2012 1 commit
  31. 05 Mar, 2012 1 commit
  32. 04 Mar, 2012 1 commit
  33. 25 Feb, 2012 1 commit
  34. 28 Jan, 2012 1 commit