aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_buffer.c
Commit message (Collapse)AuthorAge
* Merge branch 'v0.16.x'Max Kellermann2012-02-13
|\ | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c test/read_tags.c
| * pcm_buffer: pcm_buffer_get() never returns NULLMax Kellermann2012-02-13
| | | | | | | | | | | | This fixes a bug when libsamplerate returns an empty buffer for a very small input buffer. The caller thinks this is an error, bug there is no GError object.
* | pcm_buffer: poison the old buffer before returning itMax Kellermann2011-12-13
| | | | | | | | | | | | Make valgrind find more buffer misuses. Buffer contents are not persistent, they get invalidated by pcm_buffer_get(), because this function may allocate a new buffer, but will not copy old data.
* | pcm_buffer, output_plugin, ...: include config.hMax Kellermann2011-12-13
| |
* | pcm_buffer: eliminate merge conflict falloutMax Kellermann2011-12-13
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-11-28
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/encoder/flac_encoder.c src/log.c src/pcm_buffer.c
| * pcm_buffer: add assertionsMax Kellermann2011-11-27
| |
| * pcm_buffer: move formula to new function align_8k()Max Kellermann2011-11-27
| |
| * pcm_buffer: un-inline pcm_buffer_get()Max Kellermann2011-11-27
| | | | This method is too complex for inlining.
* pcm_buffer: un-inline pcm_buffer_get()Max Kellermann2011-10-10
This function is too complex for being inlined everywhere.