1. 09 Feb, 2009 3 commits
  2. 04 Feb, 2009 18 commits
  3. 03 Feb, 2009 4 commits
    • Max Kellermann's avatar
      ffmpeg: fixed seek integer overflow · 824d299e
      Max Kellermann authored
      The "current" variable is used for calculating the seek destination,
      and was declared as "int".  With very long song files, the 32 bit
      integer can overflow.  ffmpeg expects an int64_t, which is very
      unlikely to overflow.  Switch to int64_t.
      824d299e
    • Max Kellermann's avatar
      ffmpeg: check if the time stamp is valid · f3b73b82
      Max Kellermann authored
      When ffmpeg cannot estimate the elapsed time, it sets
      AVPacket.pts=AV_NOPTS_VALUE.  Our ffmpeg decoder plugin did not check
      for that special value.
      f3b73b82
    • Max Kellermann's avatar
      ffmpeg: don't warn of empty packet output · 81b6c0d7
      Max Kellermann authored
      If avcodec_decode_audio2() returns no output for an AVPacket,
      libavcodec may buffer some data, and return a larger chunk of output
      later.  This patch disables a lot of bogus warnings.
      81b6c0d7
    • Max Kellermann's avatar
      ffmpeg: print codec name · a7632b09
      Max Kellermann authored
      Output the name of the codec as a debug message.  During my tests,
      ffmpeg never filled this struct member, but it may do so in the past,
      and this debug message might become helpful.
      a7632b09
  4. 02 Feb, 2009 5 commits
  5. 30 Jan, 2009 10 commits