1. 26 Sep, 2013 1 commit
  2. 31 Aug, 2013 1 commit
    • Christian Schmidt's avatar
      pcm_dvd: consolidate pieces from pcm.c and mpeg.c · a42e3a67
      Christian Schmidt authored
      Remove the header decoding for PCM audio from mpeg.c and the
      20/24bit parts from pcm.c and merge them into a new decoder in
      pcm-dvd.c.
      
      The decoder has added support for samples that span multiple
      packets and modified 20/24bit group decoding. Both is needed to
      decode samples that have been generated with DVD-Lab Pro 2. The
      decoding of 16bit PCM and two channel 24bit is identical to
      before. No other samples are known to verify the correctness of
      the encoding this software does.
      The complete list of tested formats is
      48kHz/16bit/2-8 channels
      48kHz/24bit/2-5 channels
      96kHz/16bit/2-4 channels
      96kHz/24bit/2 channels
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      a42e3a67
  3. 12 Jul, 2013 1 commit
  4. 07 Jun, 2013 1 commit
  5. 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
  6. 08 Mar, 2013 1 commit
  7. 06 Mar, 2013 1 commit
  8. 12 Feb, 2013 1 commit
  9. 04 Dec, 2012 1 commit
  10. 01 Dec, 2012 1 commit
  11. 20 Nov, 2012 7 commits
  12. 18 Nov, 2012 2 commits
  13. 17 Nov, 2012 2 commits
  14. 15 Nov, 2012 1 commit
  15. 13 Nov, 2012 1 commit
  16. 09 Nov, 2012 1 commit
  17. 02 Nov, 2012 1 commit
  18. 01 Nov, 2012 1 commit
  19. 22 Oct, 2012 1 commit
  20. 12 Oct, 2012 1 commit
  21. 09 Oct, 2012 1 commit
  22. 07 Aug, 2012 1 commit
  23. 22 Jun, 2012 1 commit
  24. 17 May, 2012 1 commit
  25. 04 Apr, 2012 1 commit
  26. 23 Mar, 2012 1 commit
  27. 22 Mar, 2012 1 commit
  28. 17 Mar, 2012 1 commit
  29. 25 Feb, 2012 2 commits
  30. 07 Feb, 2012 1 commit
  31. 01 Feb, 2012 1 commit