1. 29 Jan, 2011 1 commit
  2. 08 May, 2010 1 commit
  3. 21 Mar, 2010 1 commit
    • Tim Phipps's avatar
      Add support for MixRamp tags · e7a515c8
      Tim Phipps authored
      Adds mixrampdb and mixrampdelay commands.  Reads MIXRAP_START and
      MIXRAMP_END tags from FLAC files and overlaps instead of crossfading.
      e7a515c8
  4. 17 Feb, 2010 1 commit
  5. 06 Jan, 2010 5 commits
  6. 04 Jan, 2010 1 commit
  7. 01 Jan, 2010 1 commit
  8. 26 Dec, 2009 1 commit
  9. 02 Dec, 2009 1 commit
  10. 19 Nov, 2009 1 commit
    • Max Kellermann's avatar
      decoder/flac: fixed compiler warning · 21fdf47b
      Max Kellermann authored
      Removed the "vtrack" local variable (which triggered a gcc warning
      because it was after the newly introduced NULL check), and run
      strtol() on the original parameter.
      21fdf47b
  11. 18 Nov, 2009 1 commit
  12. 13 Nov, 2009 1 commit
  13. 12 Nov, 2009 1 commit
    • Max Kellermann's avatar
      include config.h in all sources · 5b82ffc2
      Max Kellermann authored
      After we've been hit by Large File Support problems several times in
      the past week (which only occur on 32 bit platforms, which I don't
      have), this is yet another attempt to fix the issue.
      5b82ffc2
  14. 11 Nov, 2009 9 commits
  15. 10 Nov, 2009 6 commits
  16. 13 Oct, 2009 1 commit
  17. 14 Aug, 2009 1 commit
    • Max Kellermann's avatar
      decoder/flac: don't allocate cuesheet twice (memleak) · 1c4f407a
      Max Kellermann authored
      The function flac_cue_track() first calls FLAC__metadata_object_new(),
      then overwrites this pointer with FLAC__metadata_get_cuesheet().  This
      allocate two FLAC__StreamMetadata objects, but the first pointer is
      lost, and never freed.
      1c4f407a
  18. 22 Jul, 2009 4 commits
  19. 19 Jul, 2009 1 commit
    • David Woodhouse's avatar
      Add audio_format_init() function · 37754559
      David Woodhouse authored
      It makes no difference right now, but we're about to add an endianness
      flag and will want to make sure it's correctly initialised every time.
      37754559
  20. 17 Mar, 2009 1 commit
    • Mario Lenz's avatar
      flac/cue: added support for TITLE[n] comments · 7ba7e673
      Mario Lenz authored
      On 2009/03/17 Max Kellermann<max@duempel.org> wrote:
      
      > There doesn't seem to be an "official" standard.  I'd say: search for
      > TITLE[1] first (the most explicit form), then TITLE1, and finally fall
      > back to TITLE.  This makes sure MPD supports every possible standard,
      > without breaking.
      
      I've also added some additional checks to make sure entry is long
      enough.
      7ba7e673