aboutsummaryrefslogtreecommitdiff
path: root/src/riff.c
Commit message (Collapse)AuthorAge
* use g_strerror() instead of strerror()Max Kellermann2012-03-06
| | | | Make sure we get a UTF-8 encoded string.
* copyright year 2011Max Kellermann2011-01-29
|
* Update copyright notices.Avuton Olrich2009-12-31
|
* added missing config.h includes for extended LFS supportMax Kellermann2009-11-11
| | | | | All sources which might work with large files must include config.h, to get Large File Support on 32 bit platforms.
* riff, aiff: fixed "limited range" gcc warningMax Kellermann2009-10-11
| | | | | | On 32 bit systems with large file support enabled (i.e. "sizeof(off_t) > sizeof(size_t)") gcc emits a warning because a size_t cast to off_t can never become negative.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* fixing unsigned to signed comparisionViliam Mateicka2009-03-02
| | | | [mk: cast off_t to uint32_t; same fix for aiff.c]
* tag_id3: parse ID3 tags in AIFF filesMax Kellermann2009-03-02
| | | | | | Added a small AIFF parser library, code copied from the RIFF parser (big-endian integers). Look for an "ID3" chunk, and let libid3tag parse it.
* tag_id3: parse ID3 tags in RIFF/WAV filesMax Kellermann2009-03-02
Added a small RIFF parser library. Look for an "id3" chunk, and let libid3tag parse it.