Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-10-29 | mp3: moved code to mp3_synth_and_send() | Max Kellermann | 1 | -60/+74 | |
Break the large function mp3_read() into smaller pieces. | |||||
2008-10-29 | mp3: moved code to mp3_send_pcm() | Max Kellermann | 1 | -29/+48 | |
Break the large function mp3_read() into smaller pieces. | |||||
2008-10-29 | mp3: moved code to mp3_update_timer_next_frame() | Max Kellermann | 1 | -16/+28 | |
Break the large function mp3_read() into smaller pieces. | |||||
2008-10-29 | mp3: moved code to mp3_this_frame_offset() | Max Kellermann | 1 | -10/+10 | |
Break the large function mp3_read() into smaller pieces. | |||||
2008-10-29 | mp3: moved code to mp3_time_to_frame() | Max Kellermann | 1 | -11/+21 | |
Break the large function mp3_read() into smaller pieces. | |||||
2008-10-29 | mp3: assert that the stream is seekable | Max Kellermann | 1 | -5/+5 | |
dc_seek() won't send a SEEK command to the decoder thread unless the stream is seekable. No need to do another check; convert that to an assertion. | |||||
2008-10-28 | mp3: moved code to mp3_filesize_to_song_length() | Max Kellermann | 1 | -23/+42 | |
The function mp3_decode_first_frame() is too large. Move some code to separate smaller functions. | |||||
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. |