Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use g_free() instead of free() | Max Kellermann | 2009-01-25 | 1 | -3/+2 |
| | | | | | | On some platforms, g_free() must be used for memory allocated by GLib. This patch intends to correct a lot of occurrences, but is probably not complete. | ||||
* | conf: const pointers in block get functions | Max Kellermann | 2009-01-25 | 1 | -1/+1 |
| | | | | | All config_get_block_*() functions should accept constant config_param pointers. | ||||
* | conf: no CamelCase, part I | Max Kellermann | 2009-01-17 | 1 | -1/+1 |
| | | | | Renamed functions, types, variables. | ||||
* | fix G_BYTE_ORDER check | Max Kellermann | 2009-01-05 | 1 | -1/+1 |
| | | | | "#ifdef G_BYTE_ORDER == G_BIG_ENDIAN" cannot work, of course. | ||||
* | use GLib byte order macros | Max Kellermann | 2009-01-05 | 1 | -1/+1 |
| | |||||
* | output plugins: don't include gcc.h | Max Kellermann | 2009-01-01 | 1 | -6/+7 |
| | | | | Use GLib's G_GNUC_UNUSED instead of gcc.h's mpd_unused. | ||||
* | osx_plugin: migrate from pthread to glib threads | Thomas Jansen | 2008-12-28 | 1 | -19/+18 |
| | |||||
* | Remove useless statement. | Emanuele Giaquinta | 2008-12-17 | 1 | -1/+0 |
| | |||||
* | Remove useless computation. After the pthread_cond_wait loop there are at ↵ | Emanuele Giaquinta | 2008-12-17 | 1 | -2/+0 |
| | | | | least MIN(od->bufferSize, size) free bytes in the buffer. Thus MIN(od->bufferSize - od->len, size) is always equal to MIN(od->bufferSize, size). | ||||
* | Remove useless statement, curpos is initialized at the beginning of the loop. | Emanuele Giaquinta | 2008-12-17 | 1 | -1/+0 |
| | |||||
* | Factor computation. | Emanuele Giaquinta | 2008-12-17 | 1 | -4/+6 |
| | |||||
* | Use MIN. | Emanuele Giaquinta | 2008-12-17 | 1 | -2/+2 |
| | |||||
* | Call CloseComponent after AudioUnitUninitialize. | Emanuele Giaquinta | 2008-12-17 | 1 | -1/+1 |
| | |||||
* | osx: use 16 bit sample format | Max Kellermann | 2008-12-08 | 1 | -0/+3 |
| | | | | | | The OS X output does not seem to support 24 bit audio in the way MPD implements it currently. Fall back to 16 bit for now, and schedule 24 bit support on OS X for MPD 0.15. | ||||
* | osx: use GLib instead of utils.h/log.h | Max Kellermann | 2008-12-08 | 1 | -9/+13 |
| | | | | | One my_usleep() invocation remains, until we find out if we can delete it. | ||||
* | osx: don't use void pointer in arithmetic | Max Kellermann | 2008-12-08 | 1 | -2/+2 |
| | | | | | Cast AudioBuffer.mData to a "unsigned char*" before adding "curpos". This fixes a gcc warning. | ||||
* | osx: fix gcc warnings | Max Kellermann | 2008-11-04 | 1 | -7/+8 |
| | | | | Fix prototypes and unused variables. | ||||
* | osx: adapt to new output plugin API | Max Kellermann | 2008-11-04 | 1 | -19/+15 |
| | | | | | The OS X output plugin wasn't adapted to the new output plugin yet, because I had no Mac to test... | ||||
* | output: use bool for return values and flags | Max Kellermann | 2008-10-29 | 1 | -14/+15 |
| | | | | | Don't return 0/-1 on success/error, but true/false. Instead of int, use bool for storing flags. | ||||
* | output: don't compile plugins which are disabled | Max Kellermann | 2008-10-26 | 1 | -10/+2 |
| | | | | Don't compile the sources of disabled output plugins at all. | ||||
* | renamed src/audioOutputs/ to src/output/ | Max Kellermann | 2008-10-26 | 1 | -0/+368 |
Again, no CamelCase in the directory name. |