1. 02 Sep, 2014 1 commit
  2. 03 Oct, 2013 1 commit
  3. 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
  4. 08 Mar, 2013 1 commit
  5. 12 Feb, 2013 1 commit
  6. 04 Dec, 2012 1 commit
  7. 20 Nov, 2012 1 commit
  8. 08 Oct, 2012 1 commit
  9. 03 Oct, 2012 2 commits
  10. 02 Oct, 2012 3 commits
  11. 01 Oct, 2012 1 commit
  12. 15 Aug, 2012 1 commit
  13. 07 Aug, 2012 1 commit
  14. 01 Aug, 2012 1 commit
  15. 31 Jul, 2012 3 commits
  16. 17 Jun, 2012 1 commit
  17. 01 Jun, 2012 1 commit
  18. 13 Jan, 2012 1 commit
  19. 31 Dec, 2011 1 commit
  20. 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
  21. 09 Nov, 2011 1 commit
  22. 22 Sep, 2011 5 commits
  23. 14 Jul, 2011 1 commit
  24. 16 May, 2011 1 commit
    • Stefano Sabatini's avatar
      iff/8svx: redesign 8SVX demuxing and decoding for handling stereo samples correctly · e280a4da
      Stefano Sabatini authored
      Make the iff demuxer send the whole audio chunk to the decoder as a
      single packet, move stereo interleaving from the iff demuxer to the
      decoder, and introduce an 8svx_raw decoder which performs
      stereo interleaving.
      
      This is required for handling stereo data correctly, indeed samples
      are stored like:
      LLLLLL....RRRRRR
      
      that is all left samples are at the beginning of the chunk, all right
      samples at the end, so it is necessary to store and process the whole
      buffer in order to decode each frame. Thus the decoder needs all the
      audio chunk before it can return interleaved data.
      
      Fix decoding of files 8svx_exp.iff and 8svx_fib.iff, fix trac issue #169.
      e280a4da
  25. 10 May, 2011 3 commits
  26. 19 Mar, 2011 1 commit
  27. 28 Jan, 2011 1 commit
  28. 26 Jan, 2011 1 commit
  29. 12 Nov, 2010 1 commit