aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-08-04DatabasePrint: print Last-Modified attribute for directoriesAndrzej Rybczak1-2/+15
2013-08-04Commands: new command "toggleoutput"Max Kellermann5-0/+54
2013-08-04FfmpegDecoderPlugin: add application/flv to mime types listJustin Riley1-0/+1
2013-08-04ConfigData: remove obsolete functionsMax Kellermann2-79/+0
2013-08-04PlaylistPlugin: pass config_param referenceMax Kellermann4-13/+14
2013-08-04DatabasePlugin: pass config_param referenceMax Kellermann7-16/+16
2013-08-04InputPlugin: pass config_param referenceMax Kellermann4-16/+18
2013-08-04MixerPlugin: pass config_param referenceMax Kellermann10-26/+27
2013-08-04FilterPlugin: pass config_param referenceMax Kellermann13-32/+34
2013-08-04EncoderPlugin: pass config_param referenceMax Kellermann11-47/+45
2013-08-04OutputPlugin: pass config_param referenceMax Kellermann23-153/+157
2013-08-04DecoderPlugin: pass config_param referenceMax Kellermann13-35/+34
2013-08-04ConfigData: move code to block_param, config_param methodsMax Kellermann2-42/+113
2013-08-03ConfigData: remove C++ checksMax Kellermann1-20/+0
2013-08-03audio_format: convert to C++Max Kellermann106-1187/+1173
2013-08-03gcc.h: add macro gcc_unreachable()Max Kellermann12-14/+18
2013-08-01decoder/mikmod: use MikMod_free() to free the title on libmikmod-3.2Christoph Mende1-0/+4
Player_LoadTitle() returns an aligned pointer in libmikmod-3.2 that cannot be freed with free(). The correct way to do this now is MikMod_free() which extracts the original pointer from the buffer and frees that. Signed-off-by: Christoph Mende <mende.christoph@gmail.com>
2013-08-01playlist_edit: fix "move" relative to current when there is no current songMax Kellermann1-1/+6
Fixes Mantis #3770.
2013-08-01commmand: fix URI argument in playlistaddtsufeki1-1/+1
2013-08-01PcmBuffer: reset size in Clear()Max Kellermann1-0/+1
Fix for Mantis #3806. "PcmBuffer::Clear clears the buffer but does not reset the size. If Get is called on the same PcmBuffer later on with a size that is the same as (or less than) it was before the call to Clear, the "else" branch is taken and the memory of buffer (at the address of nullptr) is poisoned instead of the necessary allocation being performed. A memset or memcpy on the returned pointer (nullptr) causes a segmentation fault."
2013-07-31Tag: check bulk mode in Clear()Max Kellermann1-1/+8
2013-07-31decoder/ffmpeg: require ffmpeg/libav 0.8Max Kellermann1-89/+0
Now that even Debian stable has picked up version 0.8, we can safely make this a requirement, and remove a lot of old cruft.
2013-07-31output/winmm: adapt to PcmBuffer API changesMax Kellermann1-5/+4
2013-07-31decoder/mpcdec: remove support for the "old" APIMax Kellermann1-111/+34
This old version has been obsolete for many years - time to remove it.
2013-07-31Tag: add method Clear()Max Kellermann7-20/+31
Allow reusing Tag instances.
2013-07-31DecoderAPI: pass rvalue reference to decoder_tag()Max Kellermann6-11/+10
Avoid duplicating the tag.
2013-07-30tag: convert to C++Max Kellermann96-689/+690
2013-07-30tag: move enum tag_type to TagType.hMax Kellermann14-45/+72
2013-07-30encoder_api: convert to C++Max Kellermann23-214/+179
2013-07-30encoder/lame,twolame: convert to C++Max Kellermann5-107/+156
2013-07-30encoder/wave: convert to C++Max Kellermann3-27/+59
2013-07-30encoder/null: convert to C++Max Kellermann3-25/+55
2013-07-30include cleanupMax Kellermann22-46/+8
2013-07-30output_api: convert to C++Max Kellermann24-26/+26
2013-07-30pcm_buffer: convert to C++Max Kellermann30-276/+172
2013-07-30Main: fix crash without state fileMax Kellermann1-1/+2
If no state file is configured, don't chek for state changes.
2013-07-30pcm_resample: convert to C++Max Kellermann9-316/+261
2013-07-30PcmConvert: don't memset() in the constructorMax Kellermann1-4/+2
This destroys data inside PcmDsd and other attributes. It was once necessary, but is not anymore.
2013-07-29encoder/flac: convert to C++Max Kellermann3-23/+57
2013-07-29pcm_dsd: convert to C++Max Kellermann7-62/+52
2013-07-29audio_check: convert to C++Max Kellermann20-49/+23
2013-07-29tag_table: convert to C++Max Kellermann8-12/+12
2013-07-29XiphTags: convert to C++Max Kellermann5-14/+10
2013-07-29tag_handler: convert to C++Max Kellermann30-57/+52
2013-07-29ape: convert to C++Max Kellermann10-93/+73
2013-07-28tag_id3: convert to C++Max Kellermann6-74/+68
2013-07-28song: convert header to C++Max Kellermann86-675/+628
2013-07-28decoder_api: convert to C++Max Kellermann42-64/+54
2013-07-28decoder/fluidsynth: convert to C++Max Kellermann3-15/+47
2013-07-28decoder/pcm: convert to C++Max Kellermann3-16/+26