aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/wavpack_decoder_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* decoder/wavpack: convert to C++Max Kellermann2013-01-101-593/+0
|
* decoder/wavpack: include cleanupMax Kellermann2013-01-101-3/+0
|
* decoder/wavpack: support all APEv2 tagsMax Kellermann2012-09-251-16/+12
| | | | | WavPack tags are always APEv2, by definition. Reuse the tag_table from tag_ape.c, instead of rolling our own.
* decoder/wavpack: bigger tag value bufferMax Kellermann2012-02-121-2/+1
| | | | Prepare for big CUESHEET tags.
* tag_handler: handle arbitrary name/value pairsMax Kellermann2012-02-121-0/+27
| | | | | The new method pair() receives an arbitrary name/value pair. Support for this is being added to a few decoder plugins.
* decoder/wavpack: move code to wavpack_scan_tag_item()Max Kellermann2012-02-111-26/+17
| | | | | Remove clutter from wavpack_scan_file(), and use a (large) fixed buffer for the tag item.
* decoder/wavpack: use the tag_table libraryMax Kellermann2012-02-111-8/+7
|
* decoder_plugin: scan tags with callback tableMax Kellermann2012-02-111-10/+12
| | | | | Pass a callback table to scan_file() and scan_stream(), instead of returning a tag object.
* decoder/wavpack: read float samples as-is, don't convert to integerMax Kellermann2011-10-201-5/+4
| | | | | For MPD's new floating point support: when a decoded wavpack file needs to be resampled, don't convert float to int and back to float.
* Merge commit 'release-0.16.5'Max Kellermann2011-10-091-1/+1
|\ | | | | | | | | | | Conflicts: NEWS configure.ac
| * decoder/wavpack: don't call WavpackGetMode() twiceMax Kellermann2011-10-081-1/+1
| | | | | | | | Use local variable "is_float".
* | input_stream: non-blocking I/OMax Kellermann2011-09-161-4/+8
| | | | | | | | | | | | | | | | | | 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.
* | Merge branch 'v0.16.x'Max Kellermann2011-07-201-29/+18
|\| | | | | | | | | | | Conflicts: src/player_thread.c src/playlist_control.c
| * wavpack: obey all decoder commands, stop at CUE track borderMax Kellermann2011-07-201-9/+6
| | | | | | | | It used to ignore the decoder_data() return value.
| * decoder/wavpack: use the correct integer typesMax Kellermann2011-07-201-10/+5
| | | | | | | | | | libwavpack provides int32_t samples, and wants uin32_t for sample counts.
| * decoder/wavpack: simplify the WavpackUnpackSamples()==0 checkMax Kellermann2011-07-201-17/+14
| | | | | | | | .. and remove one indent level.
* | copyright year 2011Max Kellermann2011-01-291-1/+1
|/
* replay_gain_info: allocate the struct staticallyMax Kellermann2010-02-171-17/+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/wavpack: fixed WVC URIMax Kellermann2010-01-201-4/+5
| | | | Pass the current URI to wavpack_open_wvc().
* decoder_api: removed function decoder_get_uri()Max Kellermann2010-01-181-7/+2
| | | | Use input_stream.uri.
* renamed decoder plugin sourcesMax Kellermann2010-01-041-0/+603
Make it X_decoder_plugin.c.