| Commit message (Expand) | Author | Files | Lines |
2008-04-12 | pass pc to player notify functions | Max Kellermann | 3 | -30/+29 |
2008-04-12 | pass DecoderControl object to decoder_sleep() | Max Kellermann | 3 | -17/+14 |
2008-04-12 | added output_buffer_free() | Max Kellermann | 3 | -0/+9 |
2008-04-12 | remove the local variable "end" | Max Kellermann | 1 | -5/+0 |
2008-04-12 | don't use short chunk numbers | Max Kellermann | 3 | -7/+7 |
2008-04-12 | added output_buffer_skip() | Max Kellermann | 3 | -8/+9 |
2008-04-12 | remove buffered_chunks, use cb->size | Max Kellermann | 3 | -3/+3 |
2008-04-12 | pass buffered_chunks to initOutputBuffer() | Max Kellermann | 3 | -16/+21 |
2008-04-12 | make playerData_pd static | Max Kellermann | 1 | -39/+32 |
2008-04-12 | allocate playerData_pd from heap instead of shm | Max Kellermann | 2 | -12/+2 |
2008-04-12 | fixed another shadow warning | Max Kellermann | 1 | -11/+11 |
2008-04-12 | don't allocate pd.auddioDeviceStates from shm | Max Kellermann | 1 | -5/+4 |
2008-04-12 | fix typo in comment | Max Kellermann | 1 | -3/+3 |
2008-04-12 | let initOutputBuffer() allocate memory | Max Kellermann | 3 | -10/+6 |
2008-04-12 | fix deadlock at end of song | Max Kellermann | 1 | -0/+1 |
2008-04-12 | decode: fix some uninitialized variable warnings | Eric Wong | 2 | -3/+3 |
2008-04-12 | decode: fix unsigned comparision and add some paranoid assertions | Eric Wong | 1 | -8/+9 |
2008-04-12 | Fix a few more warnings from -Wshadow | Eric Wong | 7 | -36/+38 |
2008-04-12 | missing const in disabled code path | Max Kellermann | 1 | -1/+1 |
2008-04-12 | some assertions to check the unsigned changes | Max Kellermann | 1 | -0/+3 |
2008-04-12 | use size_t in audio.c | Max Kellermann | 2 | -5/+5 |
2008-04-12 | use free()/malloc() instead of realloc() | Max Kellermann | 1 | -2/+3 |
2008-04-12 | use size_t in audioOutput.c internals | Max Kellermann | 2 | -2/+2 |
2008-04-12 | use size_t and constant pointer in ao plugins | Max Kellermann | 12 | -36/+66 |
2008-04-12 | use size_t for pcm_sizeOfConvBuffer() result | Max Kellermann | 1 | -4/+4 |
2008-04-12 | yet more unsigned integers | Max Kellermann | 1 | -4/+4 |
2008-04-12 | constant pointers | Max Kellermann | 3 | -9/+9 |
2008-04-12 | fix parameter types in the faad calls | Max Kellermann | 2 | -3/+3 |
2008-04-12 | fix compilation error in wavpack plugin | Max Kellermann | 1 | -3/+6 |
2008-04-12 | yet more unsigned integers | Max Kellermann | 5 | -10/+9 |
2008-04-12 | whitespace cleanup | Max Kellermann | 1 | -67/+67 |
2008-04-12 | added inline function successor() | Max Kellermann | 1 | -11/+12 |
2008-04-12 | moved currentChunk into OutputBuffer | Max Kellermann | 2 | -10/+11 |
2008-04-12 | use the notify API in the main thread | Max Kellermann | 3 | -9/+19 |
2008-04-12 | use the notify API in the player | Max Kellermann | 3 | -6/+10 |
2008-04-12 | use the notify API in the decoder | Max Kellermann | 3 | -6/+12 |
2008-04-12 | use the pthread API in notify.c | Max Kellermann | 2 | -33/+66 |
2008-04-12 | rename the notify.c methods | Max Kellermann | 2 | -6/+6 |
2008-04-12 | use break instead of quitDecode()+return | Max Kellermann | 1 | -6/+3 |
2008-04-12 | moved expression to audioFormatSizeToTime() | Max Kellermann | 2 | -3/+6 |
2008-04-12 | let calculateCrossFadeChunks() decide | Max Kellermann | 1 | -14/+12 |
2008-04-12 | moved code to playChunk() | Max Kellermann | 1 | -10/+20 |
2008-04-12 | added outputBufferShift() | Max Kellermann | 3 | -4/+13 |
2008-04-12 | continue main loop instead of nesting loops | Max Kellermann | 1 | -13/+5 |
2008-04-12 | sleep when waiting for cross-fade chunks | Max Kellermann | 1 | -1/+3 |
2008-04-12 | moved code to crossFade() | Max Kellermann | 1 | -15/+20 |
2008-04-12 | use sizeof(chunk.data) instead of CHUNK_SIZE | Max Kellermann | 1 | -2/+2 |
2008-04-12 | added struct OutputBufferChunk | Max Kellermann | 4 | -41/+46 |
2008-04-12 | moved CHUNK_SIZE to outputBuffer.h | Max Kellermann | 2 | -3/+3 |
2008-04-12 | added outputBufferChunkData() | Max Kellermann | 3 | -4/+11 |