aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-02const pointersMax Kellermann4-10/+10
Yet another patch which converts pointer arguments to "const".
2008-09-02tag: static directory nameMax Kellermann1-5/+3
While parsing the tag cache, don't allocate the directory name from the heap, but copy it into a buffer on the stack. This reduces heap fragmentation by 1%.
2008-09-02tag: try not to reallocate tag.items in every add() callMax Kellermann3-7/+91
If many tag_items are added at once while the tag cache is being loaded, manage these items in a static fixed list, instead of reallocating the list with every newly created item. This reduces heap fragmentation. Massif results again: mk before: total 12,837,632; useful 10,626,383; extra 2,211,249 mk now: total 12,736,720; useful 10,626,383; extra 2,110,337 The "useful" value is the same since this patch only changes the way we allocate the same amount of memory, but heap fragmentation was reduced by 5%.
2008-09-02song: don't export newNullSong()Max Kellermann2-3/+1
The function newNullSong() is only used internally in song.c.
2008-09-02tag: try not to duplicate the input stringMax Kellermann1-13/+18
Try to detect if the string needs Latin1-UTF8 conversion, or whitespace cleanup. If not, we don't need to allocate temporary memory, leading to decreased heap fragmentation.
2008-09-02tag: pass length to fix_utf8()Max Kellermann1-3/+4
Same as the previous patch, prepare the function fix_utf8() this time.
2008-09-02added "length" parameter to validUtf8String()Max Kellermann4-10/+16
At several places, we create temporary copies of non-null-terminated strings, just to use them in functions like validUtf8String(). We can save this temporary allocation and avoid heap fragmentation if we add a length parameter instead of expecting a null-terminated string.
2008-09-02assert value!=NULL in fix_utf8()Max Kellermann1-1/+3
We must never pass value==NULL to fix_utf(). Replace the run-time check with an assertion.
2008-09-02tag: converted macro fixUtf8() to an inline functionMax Kellermann1-9/+11
Since the inline function cannot modify its caller's variables (which is a good thing for code readability), the new string pointer is the return value. The resulting binary should be the same as with the macro.
2008-09-02tag: added a pool for tag itemsMax Kellermann5-6/+147
The new source tag_pool.c manages a pool of reference counted tag_item objects. This is used to merge tag items of the same type and value, saving lots of memory. Formerly, only the value itself was pooled, wasting memory for all the pointers and tag_item structs. The following results were measured with massif. Started MPD on amd64, typed "mpc", no song being played. My music database contains 35k tagged songs. The results are what massif reports as "peak". 0.13.2: total 14,131,392; useful 11,408,972; extra 2,722,420 eric: total 18,370,696; useful 15,648,182; extra 2,722,514 mk f34f694: total 15,833,952; useful 13,111,470; extra 2,722,482 mk now: total 12,837,632; useful 10,626,383; extra 2,211,249 This patch set saves 20% memory, and does a good job in reducing heap fragmentation.
2008-09-02tag: converted tag_item.value to a char arrayMax Kellermann4-20/+5
The value is stored in the same memory allocation as the tag_item struct; this saves memory because we do not store the value pointer anymore. Also remove the getTagItemString()/removeTagItemString() dummies.
2008-09-02removed tree.cMax Kellermann4-857/+67
This patch makes MPD consume much more memory because string pooling is disabled, but it prepares the next bunch of patches. Replace the code in tagTracker.c with naive algorithms without the tree code. For now, this should do; later we should find better algorithms, especially for getNumberOfTagItems(), which has become wasteful with temporary memory.
2008-09-02tag: converted MpdTag.items to a pointer listMax Kellermann4-17/+20
This prepares the following patches, which aim to reduce MPD's memory usage: we plan to share tag_item instances, instead of just their values.
2008-09-02tag: moved code to tag_id3.cMax Kellermann5-352/+402
The ID3 code uses only the public tag API, but is otherwise unrelated. Move it to a separate source file.
2008-09-02wavpack: tag_new() cannot failMax Kellermann1-5/+0
Since tag_new() uses xmalloc(), it cannot fail - if we're really out of memory, the process will abort.
2008-09-02tag: converted tag_add_item() to an inline functionMax Kellermann1-2/+5
2008-09-02tag: renamed functions, no CamelCaseMax Kellermann19-121/+120
2008-09-02tag: renamed MpdTag and MpdTagItem to struct mpd_tag, struct tag_itemMax Kellermann26-109/+112
Getting rid of CamelCase; not having typedefs also allows us to forward-declare the structures.
2008-09-01use deconst_ptr instead of duplicating deconst logicEric Wong5-55/+15
2008-09-01provide a generic deconst_ptr functionEric Wong1-0/+11
This is generic enough to be used for various purposes. It will only deconst their argument to work around various braindead APIs without having to write a new wrapper each time we use one of those braindead APIs. It does not cast nor do do anything other than quietly remove the const qualifier for those braindead APIs.
2008-09-01playlist: fix shuffle/random distributionEric Wong1-6/+19
Previously we were using a naive randomization algorithm that could shuffle already shuffled songs. Now we attempt to correctly[1] implement the Fisher-Yates shuffle. [1] Note: I absolutely suck at basic arithmetic, so there could be off-by-one errors in here, too. I've added assertions in swapSongs and swapOrder functions to more quickly detect them.
2008-09-01storedPlaylist: correctly expand path when writingEric Wong1-6/+7
Otherwise we'd be writing to whatever directory that mpd is running in.
2008-09-01Fix shadow warningsEric Wong2-4/+4
2008-08-31pass constant pointersMax Kellermann10-16/+17
And again, convert arguments to const.
2008-08-31const pointersMax Kellermann6-16/+16
The usual bunch of pointer arguments which should be const.
2008-08-31unsigned integers and size_tMax Kellermann3-11/+11
Use "unsigned int" whenever negative values are not meaningful. Use size_t whenever we are going to describe buffer sizes.
2008-08-31oggflac: fix GCC warningsMax Kellermann1-9/+9
Fix lots of "unused parameter" warnings in the OggFLAC decoder plugin. Not sure if anybody uses it anymore, since newer libflac obsoletes it.
2008-08-31include cleanupMax Kellermann4-2/+3
Only include headers which are really needed.
2008-08-31protect locate.h from double inclusionMax Kellermann1-0/+5
2008-08-31playlist: eliminate unused fd parametersMax Kellermann3-34/+34
Again, remove file descriptor parameters, which are not actually used. These functions can also be converted to return void.
2008-08-31jack: made "sample_size" static constMax Kellermann1-1/+1
sample_size is a variable which is computed at compile time. Declare it "static const", so the compiler can optimize it away.
2008-08-31moved jack configuration to the JackData structMax Kellermann1-49/+64
Storing local configuration in global (static) variables is obviously a bad idea. Move all those variables into the JackData struct, including the locks.
2008-08-31jack: removed unused macrosMax Kellermann1-10/+0
2008-08-31jack: don't set audioOutput->data=NULLMax Kellermann1-5/+5
There is only one caller of freeJackData() left: jack_finishDriver(). This function is called by the mpd core, and is called exactly once for every successful jack_initDriver(). We do not need to clear audioOutput->data, since this variable is invalidated anyway.
2008-08-31jack: initialize JackData in jack_initDriver()Max Kellermann1-6/+2
Over the lifetime of the jack AudioOutput object, we want a single valid JackData object, so we can persistently store data there (configuration etc.). Allocate JackData in jack_initDriver(). After that, we can safely remove all audioOutput->data==NULL checks (and replace them with assertions).
2008-08-31jack: added freeJackClient()Max Kellermann1-13/+25
No need to destroy the JackData object when an error occurs, since jack_finishDriver() already frees it. Only deinitialize the jack library, introduce freeJackClient() for that, and move code from freeJackData().
2008-08-31jack: initialize jd->client after !jd checkMax Kellermann1-5/+5
Prepare the next patch: make the "!jd" check independent of the jd->client initialization. This way we can change the "jd" initialization semantics later.
2008-08-31jack: eliminate superfluous freeJackData() callsMax Kellermann1-6/+0
connect_jack() invokes freeJackData() in every error handler, although its caller also invokes this function after a failure. We can save a lot of lines in connect_jack() by removing these redundant freeJackData() invocations.
2008-08-31mp3: converted the MUTEFRAME_ macros to an enumMax Kellermann1-9/+12
Also introduce MUTEFRAME_NONE; previously, the code used "0".
2008-08-31mp3: converted the DECODE_ constants to an enumMax Kellermann1-8/+13
2008-08-31wavpack: don't use "isp" before initializationMax Kellermann1-4/+1
The old code called can_seek() with the uninitialized pointer "isp.is". Has this ever worked? Anyway, initialize "isp" first, then call can_seek(&isp).
2008-08-31wavpack: moved code to wavpack_open_wvc()Max Kellermann1-70/+66
Move everything related to finding and initializing the WVC stream to wavpack_open_wvc(). This greatly simplifies its error handling and the function wavpack_streamdecode().
2008-08-30simplified code in the ogg decoder pluginMax Kellermann1-25/+25
Return early when the player thread sent us a command. This saves one level of indentation.
2008-08-30oggvorbis: don't detect OGG header if stream is not seekableMax Kellermann2-0/+10
If the input stream is not seekable, the try_decode() function consumes valuable data, which is not available to the decode() function anymore. This means that the decode() function does not parse the header correctly. Better skip the detection if we cannot seek. Or implement better buffering, something like unread() or buffered rewind().
2008-08-30mp3: audio_linear_dither() returns mpd_sint16Max Kellermann1-11/+9
The return value of audio_linear_dither() is always casted to mpd_sint16. Returning long does not make sense, and consumed 8 bytes on a 64 bit platform.
2008-08-30mp3: changed outputBuffer's type to mpd_sint16[]Max Kellermann1-4/+3
The output buffer always contains mpd_sint16; declaring it with that type saves several casts.
2008-08-30mp3: moved num_samples calculation out of the loopMax Kellermann1-6/+7
The previous patch removed all loop specific dependencies from the num_samples formula; we can now calculate it before entering the loop.
2008-08-30mp3: eliminated outputPtrMax Kellermann1-17/+9
The output buffer is always flushed after being appended to, which allows us to assume it is always empty. Always start writing at outputBuffer, don't remember outputPtr.
2008-08-30mp3: don't do a second flush in mp3_decode()Max Kellermann1-12/+1
The previous patch made mp3Read() flush the output buffer in every iteration, which means we can eliminate the flush check after invoking mp3Read().
2008-08-30mp3: always flush directly after decoding/ditheringMax Kellermann1-17/+13
Since we try to fill the buffer in every iteration, we assume that we should flush the output buffer at the end of each iteration.