1. 19 Feb, 2009 1 commit
  2. 17 Feb, 2009 15 commits
  3. 16 Feb, 2009 3 commits
  4. 12 Feb, 2009 1 commit
  5. 17 Jan, 2009 1 commit
    • Max Kellermann's avatar
      moved fallback APE/ID3 tag loader to song.c · 5395f5f6
      Max Kellermann authored
      Some plugins used the APE or ID3 tag loader as a fallback when their
      own methods of loading tags did not work.  Move this code out of all
      decoder plugins, into song_file_update().
      5395f5f6
  6. 08 Jan, 2009 1 commit
  7. 21 Nov, 2008 2 commits
  8. 20 Nov, 2008 1 commit
  9. 16 Nov, 2008 2 commits
    • Max Kellermann's avatar
      input_stream: size==-1 means unknown size · 75914035
      Max Kellermann authored
      Define the special value "-1" as "unknown size".  Previously, there
      was no indicator for streams with unknown size, which might confuse
      some decoders.
      75914035
    • Max Kellermann's avatar
      aac: detect whether to pass "uint32_t*" to NeAACDecInit2() · 9c4e97a6
      Max Kellermann authored
      neaacdec.h declares all arguments as "unsigned long", but internally
      expects uint32_t pointers.  This triggers gcc warnings on 64 bit
      architectures.  To avoid that, make configure.ac detect whether we're
      using Debian's corrected headers or the original libfaad headers.  In
      any case, pass a pointer to an uint32_t, conditionally casted to
      "unsigned long*".
      9c4e97a6
  10. 15 Nov, 2008 2 commits
  11. 12 Nov, 2008 10 commits
  12. 11 Nov, 2008 1 commit
    • Max Kellermann's avatar
      decoder: return void from decode() methods · 9eed4191
      Max Kellermann authored
      The stream_decode() and file_decode() methods returned a boolean,
      indicating whether they were able to decode the song.  This is
      redundant, since we already know that: if decoder_initialized() has
      been called (and dc.state==DECODE), the plugin succeeded.  Change both
      methods to return void.
      9eed4191