1. 22 Dec, 2010 3 commits
  2. 06 Oct, 2010 1 commit
  3. 20 Sep, 2010 1 commit
  4. 13 Sep, 2010 1 commit
    • Jean-Paul Saman's avatar
      ffmpeg-mt: debian package · 2cd066b4
      Jean-Paul Saman authored
      Build ffmpeg with multithreaded support as ffmpeg-mt debian package.
      - update all package names to include -mt extension
      - update all package shared lib versions
      - update all dependencies
      - update Replace, Conflicts and Provide for debian package
      - make sure this package replaces ffmpeg packet by *-mt variants
      2cd066b4
  5. 08 Sep, 2010 1 commit
  6. 06 Sep, 2010 1 commit
  7. 14 Jul, 2010 4 commits
  8. 24 Jun, 2010 2 commits
    • Alexander Strange's avatar
      7e928f69
    • Alexander Strange's avatar
      Fix crash on close when decoding a single-frame h264 file with 3+ threads · d812c6f8
      Alexander Strange authored
      Problematic code path:
      1. sps_buffers[0] is allocated in the first thread's codec context when the
      decoder is opened.
      2. The first thread context is memcpy'd to the other threads by frame_thread_init().
      3. The first thread is closed and its sps_buffers[0] is freed.
      4. The third thread is closed.
      Because it never got to decode a frame, update_thread_context was never called,
      and sps_buffers[0] still contained the first thread's pointer.
      
      Fixed by not trying to free sps/pps buffers if the thread wasn't initialized.
      I didn't properly consider this when designing it but this seems to be the
      best approach anyway.
      
      Fixes still2.mp4 crash from Chromium
      d812c6f8
  9. 23 Jun, 2010 1 commit
  10. 21 Jun, 2010 1 commit
  11. 20 Jun, 2010 20 commits
  12. 19 Jun, 2010 4 commits