Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-11-03 | decoder: no CamelCase | Max Kellermann | 1 | -3/+3 | |
Renamed variables and functions. | |||||
2008-10-30 | decoder: use bool for return values and flags | Max Kellermann | 1 | -5/+5 | |
Don't return 0/-1 on success/error, but true/false. Instead of int, use bool for storing flags. | |||||
2008-10-08 | don't include os_compat.h | Max Kellermann | 1 | -0/+2 | |
When there are standardized headers, use these instead of the bloated os_compat.h. | |||||
2008-10-08 | notify: removed the "Notify" typedef | Max Kellermann | 1 | -5/+9 | |
Typedefs shouldn't be used, use the bare struct names instead. | |||||
2008-10-08 | song: converted typedef Song to struct song | Max Kellermann | 1 | -2/+4 | |
Again, a data type which can be forward-declared. | |||||
2008-09-24 | notify: added notify_deinit() | Max Kellermann | 1 | -0/+5 | |
Destroy the mutex when it is not used anymore. | |||||
2008-08-26 | moved code to pc_init(), dc_init() | Max Kellermann | 1 | -0/+8 | |
2008-08-26 | renamed decode.h to decoder_control.h | Max Kellermann | 1 | -1/+1 | |
2008-08-26 | moved variable "dc" to decode.h | Max Kellermann | 1 | -1/+2 | |
Now that "dc" is available here, we don't have to pass it to decoder_is_idle() and decoder_is_starting() anymore. | |||||
2008-08-26 | added decoder_control.c | Max Kellermann | 1 | -0/+82 | |
The source "decoder_control.c" provides an API for controlling the decoder. This replaces various direct accesses to the DecoderControl struct. |