1. 27 Jul, 2015 1 commit
  2. 26 Jun, 2015 1 commit
  3. 20 Jun, 2015 1 commit
    • nu774's avatar
      mp3: enable packed main_data decoding in MP4 · 6ec688e1
      nu774 authored
      14496-3 suggests packing main_data of MP3 that is usually scattered
      into multiple frames due to bit reservoir.
      
      However, after packing main_data into a access unit, bitrate index
      in the MPEG audio frame header doesn't match with actual frame size.
      
      In order to accept this, this patch removes unnecessary frame size
      checking on mp3 decoder.
      
      Also, mov demuxer was changed to use MP3 parser only on special cases
      (QT MOV with specific sample description) to avoid re-packetizing.
      Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      6ec688e1
  4. 19 Apr, 2015 1 commit
  5. 17 Apr, 2015 1 commit
  6. 05 Dec, 2014 1 commit
  7. 03 Dec, 2014 1 commit
  8. 19 Oct, 2014 1 commit
  9. 15 Aug, 2014 2 commits
  10. 05 Jun, 2014 1 commit
  11. 09 May, 2014 1 commit
  12. 14 Jan, 2014 2 commits
  13. 02 Jan, 2014 1 commit
  14. 12 Dec, 2013 1 commit
  15. 03 Dec, 2013 1 commit
  16. 23 Nov, 2013 1 commit
  17. 03 Oct, 2013 1 commit
  18. 19 Sep, 2013 1 commit
  19. 04 May, 2013 1 commit
  20. 30 Apr, 2013 1 commit
  21. 15 Mar, 2013 1 commit
  22. 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
  23. 08 Mar, 2013 1 commit
  24. 25 Feb, 2013 1 commit
  25. 12 Feb, 2013 1 commit
  26. 22 Jan, 2013 1 commit
  27. 04 Jan, 2013 1 commit
  28. 14 Dec, 2012 1 commit
  29. 04 Dec, 2012 1 commit
  30. 26 Nov, 2012 1 commit
  31. 23 Nov, 2012 1 commit
  32. 11 Nov, 2012 1 commit
  33. 23 Oct, 2012 4 commits
  34. 21 Oct, 2012 2 commits