1. 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
  2. 08 Mar, 2013 1 commit
  3. 01 Mar, 2013 1 commit
  4. 23 Feb, 2013 1 commit
  5. 12 Feb, 2013 1 commit
  6. 21 Jan, 2013 1 commit
  7. 20 Jan, 2013 1 commit
  8. 16 Jan, 2013 1 commit
  9. 04 Jan, 2013 1 commit
  10. 20 Dec, 2012 1 commit
  11. 17 Dec, 2012 1 commit
  12. 12 Dec, 2012 1 commit
  13. 10 Dec, 2012 1 commit
  14. 09 Dec, 2012 3 commits
  15. 04 Dec, 2012 1 commit
  16. 12 Oct, 2012 1 commit
  17. 01 Oct, 2012 1 commit
  18. 12 Sep, 2012 1 commit
  19. 04 Sep, 2012 1 commit
  20. 07 Aug, 2012 1 commit
  21. 21 Jul, 2012 1 commit
  22. 20 Apr, 2012 1 commit
  23. 28 Mar, 2012 1 commit
  24. 23 Feb, 2012 1 commit
  25. 15 Feb, 2012 1 commit
  26. 10 Feb, 2012 1 commit
  27. 27 Jan, 2012 1 commit
  28. 21 Jan, 2012 1 commit
  29. 07 Jan, 2012 1 commit
  30. 13 Dec, 2011 1 commit
    • Michael Niedermayer's avatar
      ac3dec: update checked AV_EF flags. · eda3758c
      Michael Niedermayer authored
      A user who wishes to use default error concealment cannot set the
      AV_EF_CRCCHECK flag because not every CRC in every format is a
      reliable indicator of bitstream damage. In some formats crcrs
      can be nonsensical in absence of any damage. We thus add the
      AV_EF_CAREFUL flag in addition to the AV_EF_CRCCHECK flag to
      allow a user to enable this reliable CRC check without having to
      enable all CRC checks in all formats.
      Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
      eda3758c
  31. 04 Dec, 2011 1 commit
  32. 02 Dec, 2011 1 commit
    • Justin Ruggles's avatar
      Add avcodec_decode_audio4(). · 0eea2129
      Justin Ruggles authored
      Deprecate avcodec_decode_audio3().
      Implement audio support in avcodec_default_get_buffer().
      Implement the new audio decoder API in all audio decoders.
      0eea2129
  33. 22 Oct, 2011 1 commit
  34. 20 Oct, 2011 1 commit
  35. 12 Oct, 2011 1 commit
  36. 09 Oct, 2011 1 commit
  37. 05 Oct, 2011 1 commit