| Commit message (Expand) | Author | Age | Files | Lines |
* | renamed InputPlugin to struct decoder_plugin | Max Kellermann | 2008-08-26 | 1 | -2/+2 |
* | eliminate OUTPUT_BUFFER_DC_STOP, OUTPUT_BUFFER_DC_SEEK | Max Kellermann | 2008-08-26 | 1 | -3/+4 |
* | added decoder_seek_where() and decoder_seek_error() | Max Kellermann | 2008-08-26 | 1 | -6/+6 |
* | added decoder_command_finished() to decoder_api.h | Max Kellermann | 2008-08-26 | 1 | -4/+4 |
* | added decoder_get_command() | Max Kellermann | 2008-08-26 | 1 | -20/+20 |
* | simplify several dc->command checks | Max Kellermann | 2008-08-26 | 1 | -7/+3 |
* | added parameter total_time to decoder_initialized() | Max Kellermann | 2008-08-26 | 1 | -3/+1 |
* | added audio_format parameter to decoder_initialized() | Max Kellermann | 2008-08-26 | 1 | -3/+3 |
* | added decoder_clear() and decoder_flush() | Max Kellermann | 2008-08-26 | 1 | -4/+4 |
* | added decoder_data() | Max Kellermann | 2008-08-26 | 1 | -15/+16 |
* | added decoder_initialized() | Max Kellermann | 2008-08-26 | 1 | -4/+3 |
* | added struct decoder | Max Kellermann | 2008-08-26 | 1 | -1/+2 |
* | added dc_command_finished() | Max Kellermann | 2008-08-26 | 1 | -8/+4 |
* | merged start, stop, seek into DecoderControl.command | Max Kellermann | 2008-08-26 | 1 | -19/+32 |
* | clean up CPP includes | Max Kellermann | 2008-08-26 | 1 | -5/+0 |
* | Make the OutputBuffer API more consistent | Eric Wong | 2008-04-13 | 1 | -7/+7 |
* | Stop passing our single OutputBuffer object everywhere | Eric Wong | 2008-04-13 | 1 | -12/+10 |
* | Stop passing our single DecoderControl object everywhere | Eric Wong | 2008-04-13 | 1 | -38/+36 |
* | yet more unsigned integers | Max Kellermann | 2008-04-12 | 1 | -4/+4 |
* | Drop metadata updates from HTTP for now (input HTTP, and shout) | Eric Wong | 2008-04-12 | 1 | -4/+0 |
* | Initial cut of fork() => pthreads() for decoder and player | Eric Wong | 2008-04-12 | 1 | -0/+4 |
* | fix -Wconst warnings | Max Kellermann | 2008-02-05 | 1 | -2/+2 |
* | fixed "comparison between signed and unsigned" | Max Kellermann | 2008-01-26 | 1 | -2/+2 |
* | fixed -Wshadow warnings | Max Kellermann | 2008-01-26 | 1 | -8/+8 |
* | Cleanup #includes of standard system headers and put them in one place | Eric Wong | 2008-01-03 | 1 | -7/+1 |
* | Simplify decode cleanup logic a bit | Eric Wong | 2008-01-01 | 1 | -12/+0 |
* | conf: improved boolean config parameter handling from -ke | Eric Wong | 2007-09-05 | 1 | -4/+3 |
* | inputPlugins/mp3_plugin: parse LAME tags for ReplayGain info | J. Alexander Treuman | 2007-08-22 | 1 | -46/+104 |
* | Making some bool options more consistent. | J. Alexander Treuman | 2007-06-03 | 1 | -5/+7 |
* | Cleaning up some comments. | J. Alexander Treuman | 2007-04-09 | 1 | -1/+1 |
* | The massive copyright update | Avuton Olrich | 2007-04-05 | 1 | -1/+1 |
* | Don't initialize globals to zero (or NULL) | Eric Wong | 2007-01-14 | 1 | -12/+1 |
* | mp3: sparse: fix warnings reported with -Wshadow | Eric Wong | 2007-01-14 | 1 | -8/+7 |
* | Added gapless_mp3_playback option. Setting to "no" will disable gapless | J. Alexander Treuman | 2006-12-23 | 1 | -2/+15 |
* | Only parse gapless info if the input stream is seekable, under the | J. Alexander Treuman | 2006-12-23 | 1 | -1/+2 |
* | Don't stop decoding if we're at maxFrames just because there's a Xing tag. | J. Alexander Treuman | 2006-12-23 | 1 | -4/+3 |
* | Cleaning up some damn near unreadable wrapping caused by indent. | J. Alexander Treuman | 2006-12-23 | 1 | -25/+8 |
* | Properly calculate the number of remaining samples in the MP3 frame, even | J. Alexander Treuman | 2006-12-23 | 1 | -5/+7 |
* | mp3_plugin.c: fix compilation with -pedantic and/or gcc 2.95 | Eric Wong | 2006-10-06 | 1 | -16/+20 |
* | handle invalid xing tags better. | Warren Dukes | 2006-10-03 | 1 | -18/+26 |
* | Replace strdup and {c,re,m}alloc with x* variants to check for OOM errors | Eric Wong | 2006-08-26 | 1 | -3/+3 |
* | Use strcasecmp to check for replaygain id3v2 tags, since apparently some apps... | J. Alexander Treuman | 2006-08-23 | 1 | -4/+4 |
* | Instead of ignoring mp2/mp3 files that start with a layer 1 frame, just skip ... | J. Alexander Treuman | 2006-08-23 | 1 | -2/+1 |
* | If a frame header decode loses sync, just try again instead of trying to deco... | J. Alexander Treuman | 2006-08-23 | 1 | -7/+3 |
* | Skip layer 2 frames in mp3s and vice versa. Also drop support for layer 1, s... | J. Alexander Treuman | 2006-08-23 | 1 | -3/+15 |
* | trivial: labels should be on the left-most column, no tabbing | Eric Wong | 2006-08-20 | 1 | -2/+2 |
* | Stop decoding once we've dropped samples at the end (it messes up the audio i... | J. Alexander Treuman | 2006-08-13 | 1 | -1/+3 |
* | Presume that the Xing frame count is accurate, and stop decoding when we hit ... | J. Alexander Treuman | 2006-08-13 | 1 | -2/+9 |
* | Several fixes uncovered with -pedantic | Eric Wong | 2006-08-01 | 1 | -2/+2 |
* | Silence a gcc warning... Properly. | J. Alexander Treuman | 2006-07-26 | 1 | -1/+3 |