1. 14 Feb, 2015 1 commit
  2. 13 Feb, 2015 1 commit
  3. 23 Jun, 2014 2 commits
  4. 22 Jun, 2014 1 commit
  5. 05 Jun, 2014 1 commit
  6. 29 May, 2014 1 commit
  7. 26 Apr, 2014 1 commit
  8. 22 Mar, 2014 1 commit
  9. 23 Dec, 2013 2 commits
  10. 30 Oct, 2013 1 commit
  11. 03 Oct, 2013 1 commit
  12. 28 Aug, 2013 1 commit
    • Rafaël Carré's avatar
      apedec: do not buffer decoded samples over AVPackets · 91d4cfb8
      Rafaël Carré authored
      Only consume an AVPacket when all the samples have been read.
      
      When the rate of samples output is limited (by the default value
      of max_samples), consuming the first packet immediately will cause
      timing problems:
      
      - The first packet with PTS 0 will output 4608 samples and be
      consumed entirely
      - The second packet with PTS 64 will output the remaining samples
      (typically, a lot, that's why max_samples exist) until the decoded
      samples of the first packet have been exhausted, at which point the
      samples of the second packet will be decoded and output when
      av_decode_frame is called with the next packet).
      
      That means there's a PTS jump since the first packet is 'decoded'
      immediately, which can be seen with avplay or mplayer: the timing
      jumps immediately to 6.2s (which is the size of a packet).
      
      Sample: http://streams.videolan.org/issues/6348/Goldwave-MAClib.apeSigned-off-by: 's avatarJustin Ruggles <justin.ruggles@gmail.com>
      91d4cfb8
  13. 02 May, 2013 2 commits
  14. 25 Mar, 2013 1 commit
  15. 15 Mar, 2013 3 commits
  16. 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
  17. 08 Mar, 2013 1 commit
  18. 12 Feb, 2013 1 commit
  19. 04 Dec, 2012 1 commit
  20. 11 Nov, 2012 1 commit
  21. 02 Nov, 2012 1 commit
  22. 01 Oct, 2012 1 commit
  23. 04 Sep, 2012 2 commits
  24. 07 Aug, 2012 1 commit
  25. 10 May, 2012 1 commit
  26. 06 Apr, 2012 1 commit
  27. 31 Mar, 2012 1 commit
  28. 28 Mar, 2012 2 commits
  29. 15 Feb, 2012 1 commit
  30. 07 Feb, 2012 3 commits