aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_buffer.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v0.16.x'Max Kellermann2012-02-131-0/+5
|\ | | | | | | | | | | | | | | Conflicts: NEWS configure.ac src/decoder/ffmpeg_decoder_plugin.c test/read_tags.c
| * pcm_buffer: pcm_buffer_get() never returns NULLMax Kellermann2012-02-131-0/+5
| | | | | | | | | | | | 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-131-0/+4
| | | | | | | | | | | | 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-131-0/+1
| |
* | pcm_buffer: eliminate merge conflict falloutMax Kellermann2011-12-131-4/+0
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-11-281-2/+19
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac src/encoder/flac_encoder.c src/log.c src/pcm_buffer.c
| * pcm_buffer: add assertionsMax Kellermann2011-11-271-0/+4
| |
| * pcm_buffer: move formula to new function align_8k()Max Kellermann2011-11-271-2/+11
| |
| * pcm_buffer: un-inline pcm_buffer_get()Max Kellermann2011-11-271-0/+35
| | | | This method is too complex for inlining.
* pcm_buffer: un-inline pcm_buffer_get()Max Kellermann2011-10-101-0/+35
This function is too complex for being inlined everywhere.