1. 22 Sep, 2006 2 commits
  2. 21 Sep, 2006 1 commit
  3. 15 Sep, 2006 4 commits
  4. 14 Sep, 2006 1 commit
  5. 13 Sep, 2006 3 commits
  6. 12 Sep, 2006 6 commits
  7. 11 Sep, 2006 2 commits
  8. 09 Sep, 2006 1 commit
  9. 07 Sep, 2006 1 commit
    • Eric Wong's avatar
      utils.c: fix xrealloc · f5c7f3da
      Eric Wong authored
      (based on suggested patch by Jan-Benedict Glaw):
      > While hacking mpd, I noticed that an assert()ion in xrealloc is wrong.
      > A null size is perfectly legal, so we shouldn't assert on that.
      
      Since some C libraries return NULL when size == 0, we'll make
      sure we get a free()-able pointer since some of those C
      libraries also barf on free(NULL).
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@4740 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      f5c7f3da
  10. 06 Sep, 2006 3 commits
  11. 30 Aug, 2006 1 commit
  12. 28 Aug, 2006 9 commits
  13. 26 Aug, 2006 4 commits
  14. 25 Aug, 2006 1 commit
  15. 24 Aug, 2006 1 commit
    • Eric Wong's avatar
      audiofile_plugin: use afSetVirtualSampleFormat, too · 64a4c635
      Eric Wong authored
      This finally fixes a bug from over two years ago playing a wave file
      (oprah.wav) with the following characteristics (from sfinfo):
      
      File Format    Microsoft RIFF WAVE Format (wave)
      Data Format    8-bit integer (unsigned, little endian)
      Audio Data     986827 bytes begins at offset 58 (3a hex)
      1 channel, 986827 frames
      Sampling Rate  22050.00 Hz
      Duration       44.754 seconds
      
      Of course, this has been regression tested with all the files
      that the previous commit got working.  Thanks to Michael Pruett
      (audiofile author) for the hint and shame on me for forgetting
      about it for over two years :x
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@4682 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      64a4c635