Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mp3: no "goto" | Max Kellermann | 2008-10-28 | 1 | -19/+36 |
| | | | | http://xkcd.com/292/ | ||||
* | mp3: use GLib allocation functions | Max Kellermann | 2008-10-28 | 1 | -11/+9 |
| | | | | This removes the need for util.h. | ||||
* | mp3: use bool | Max Kellermann | 2008-10-28 | 1 | -50/+51 |
| | | | | Use the C99 bool data type for boolean values. | ||||
* | mp3: no CamelCase | Max Kellermann | 2008-10-28 | 1 | -255/+254 |
| | | | | | Renamed all functions and variables. Also removed the mp3DecodeData typedef. | ||||
* | mp3: remove obsolete comments | Max Kellermann | 2008-10-28 | 1 | -4/+0 |
| | |||||
* | input_stream: convert offset and size to the off_t data type | Max Kellermann | 2008-10-28 | 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. | ||||
* | utils: use g_str_has_prefix() instead of prefixcmp() | Max Kellermann | 2008-10-28 | 1 | -1/+2 |
| | | | | Remove duplicated code from MPD. | ||||
* | input_stream: use "bool" instead of "int" | Max Kellermann | 2008-10-26 | 9 | -20/+20 |
| | | | | | For boolean values and success flags, use bool instead of integer (1/0 for true/false, 0/-1 for success/failure). | ||||
* | input_stream: no CamelCase | Max Kellermann | 2008-10-26 | 10 | -65/+65 |
| | | | | Renamed all functions and variables. | ||||
* | input_stream: removed the InputStream typedef | Max Kellermann | 2008-10-26 | 12 | -48/+65 |
| | | | | Everybody should use struct input_stream. | ||||
* | renamed src/inputPlugins/ to src/decoder/ | Max Kellermann | 2008-10-26 | 15 | -0/+5609 |
These plugins are not input plugins, they are decoder plugins. No CamelCase in the directory name. |