| Commit message (Expand) | Author | Files | Lines |
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 |
2008-04-12 | removed "quit" | Max Kellermann | 1 | -5/+3 |
2008-04-12 | do not reset nextChunk | Max Kellermann | 1 | -9/+5 |
2008-04-12 | added outputBufferRelative() | Max Kellermann | 3 | -10/+17 |
2008-04-12 | added outputBufferEmpty() | Max Kellermann | 3 | -2/+10 |
2008-04-12 | moved check to outputBufferAbsolute() | Max Kellermann | 3 | -17/+27 |
2008-04-12 | make variables more local | Max Kellermann | 1 | -4/+3 |
2008-04-12 | moved the initial buffering code into the big loop | Max Kellermann | 1 | -13/+10 |
2008-04-12 | some comments in decode.c | Max Kellermann | 1 | -0/+39 |
2008-04-12 | integrated macro handleDecodeStart() into caller | Max Kellermann | 1 | -43/+40 |
2008-04-12 | use clearOutputBuffer() | Max Kellermann | 1 | -4/+2 |
2008-04-12 | do not check dc->start after loop | Max Kellermann | 1 | -1/+1 |
2008-04-12 | use DECODE_ERROR_NOERROR instead of 0 | Max Kellermann | 1 | -3/+3 |
2008-04-12 | converted macro processDecodeInput() to function | Max Kellermann | 1 | -52/+80 |
2008-04-12 | added clearPlayerQueueLocked() | Max Kellermann | 1 | -43/+24 |
2008-04-12 | don't set quit=1 before break | Max Kellermann | 1 | -5/+2 |