Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-10-28 | mp3: no "goto" | Max Kellermann | 1 | -19/+36 | |
http://xkcd.com/292/ | |||||
2008-10-28 | mp3: use GLib allocation functions | Max Kellermann | 1 | -11/+9 | |
This removes the need for util.h. | |||||
2008-10-28 | mp3: use bool | Max Kellermann | 1 | -50/+51 | |
Use the C99 bool data type for boolean values. | |||||
2008-10-28 | mp3: no CamelCase | Max Kellermann | 1 | -255/+254 | |
Renamed all functions and variables. Also removed the mp3DecodeData typedef. | |||||
2008-10-28 | mp3: remove obsolete comments | Max Kellermann | 1 | -4/+0 | |
2008-10-28 | input_stream: convert offset and size to the off_t data type | Max Kellermann | 1 | -1/+1 | |
size_t and long aren't 64 bit safe (i.e. files larger than 2 GB on a 32 bit OS). Use off_t instead, which is a 64 bit integer if compiled with large file support. | |||||
2008-10-28 | utils: use g_str_has_prefix() instead of prefixcmp() | Max Kellermann | 1 | -1/+2 | |
Remove duplicated code from MPD. | |||||
2008-10-26 | input_stream: use "bool" instead of "int" | Max Kellermann | 9 | -20/+20 | |
For boolean values and success flags, use bool instead of integer (1/0 for true/false, 0/-1 for success/failure). | |||||
2008-10-26 | input_stream: no CamelCase | Max Kellermann | 10 | -65/+65 | |
Renamed all functions and variables. | |||||
2008-10-26 | input_stream: removed the InputStream typedef | Max Kellermann | 12 | -48/+65 | |
Everybody should use struct input_stream. | |||||
2008-10-26 | renamed src/inputPlugins/ to src/decoder/ | Max Kellermann | 15 | -0/+5609 | |
These plugins are not input plugins, they are decoder plugins. No CamelCase in the directory name. |