Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | decoder/vorbis: convert to C++ | Max Kellermann | 2013-01-07 | 1 | -351/+0 |
| | |||||
* | decoder/vorbis: skip 16 bit quantisation, provide float samples | Simon Hosie | 2012-09-25 | 1 | -0/+44 |
| | | | | | | | | | | Internally the vorbis (non-Tremor) decoder is working in floating point, and it's not really necessary to cut the output back to 16-bit if the soundcard or OS supports higher resolution. The decoder can be trivially modified to bypass its internal quantisation and produce floating-point output, and a separate quantisation can be used as appropriate to the platform. | ||||
* | decoder/vorbis: rename local variables | Max Kellermann | 2012-09-25 | 1 | -14/+13 |
| | |||||
* | decoder/vorbis: improved support for initial seek | Max Kellermann | 2012-09-25 | 1 | -1/+1 |
| | | | | Call decoder_get_command() before doing anything else. | ||||
* | decoder/vorbis: make variables more local | Max Kellermann | 2012-09-25 | 1 | -26/+20 |
| | |||||
* | decoder/ogg_common: rename to ogg_codec.c | Max Kellermann | 2012-09-04 | 1 | -3/+3 |
| | |||||
* | decoder/ogg_common: pass decoder to _type_detect() | Max Kellermann | 2012-09-04 | 1 | -1/+1 |
| | | | | Allow the function to be cancelled. | ||||
* | decoder/_ogg_common: rename to ogg_common.c | Max Kellermann | 2012-09-04 | 1 | -1/+1 |
| | |||||
* | decoder_plugin: scan tags with callback table | Max Kellermann | 2012-02-11 | 1 | -10/+11 |
| | | | | | Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object. | ||||
* | decoder/vorbis: move code to vorbis_comment.c | Max Kellermann | 2012-02-11 | 1 | -103/+1 |
| | |||||
* | input_stream: non-blocking I/O | Max Kellermann | 2011-09-16 | 1 | -2/+2 |
| | | | | | | | | | Add GMutex, GCond attributes which will be used by callers to conditionally wait on the stream. Remove the (now-useless) plugin method buffer(), wait on GCond instead. Lock the input_stream before each method call. Do the same with the playlist plugins. | ||||
* | copyright year 2011 | Max Kellermann | 2011-01-29 | 1 | -1/+1 |
| | |||||
* | fix crash when decoder is NULL | Romain Bignon | 2010-05-31 | 1 | -2/+2 |
| | |||||
* | decoder/vorbis: rename local variable "ret" | Max Kellermann | 2010-05-31 | 1 | -6/+5 |
| | |||||
* | decoder/vorbis: implement method stream_tag() | Max Kellermann | 2010-05-31 | 1 | -11/+4 |
| | | | | This allows tags in archive files. | ||||
* | decoder/vorbis: move code to vorbis_open_stream() | Max Kellermann | 2010-05-31 | 1 | -19/+23 |
| | |||||
* | decoder/vorbis: use single global ov_callbacks constant | Max Kellermann | 2010-05-30 | 1 | -6/+9 |
| | | | | Initialize the ov_callbacks struct at compile time. | ||||
* | decoder/vorbis: rename struct vorbis_decoder_data to vorbis_is | Max Kellermann | 2010-05-30 | 1 | -20/+19 |
| | |||||
* | replay_gain_info: allocate the struct statically | Max Kellermann | 2010-02-17 | 1 | -16/+8 |
| | | | | | | Don't allocate each replay_gain_info object on the heap. Those objects who held a pointer now store a full replay_gain_info object. This reduces the number of allocations and heap fragmentation. | ||||
* | decoder_api: removed function decoder_get_uri() | Max Kellermann | 2010-01-18 | 1 | -13/+4 |
| | | | | Use input_stream.uri. | ||||
* | renamed decoder plugin sources | Max Kellermann | 2010-01-04 | 1 | -0/+434 |
Make it X_decoder_plugin.c. |