aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-12playlist: call clearPlayerQueue() only if song is queuedMax Kellermann1-23/+15
Simplify and merge several if clauses before the clearPlayerQueue() invocation. Call clearPlayerQueue() only if a song is actually queued; add an assertion for that in clearPlayerQueue().
2008-10-12player: added struct playerMax Kellermann1-48/+75
The player struct holds the local variables which used to be passed to all those helper functions in player_thread.c.
2008-10-11player: removed set_current_song()Max Kellermann1-13/+5
set_current_song() is an internal function and consists of only one assignment. Eliminate it.
2008-10-11player: removed player_control.fileTimeMax Kellermann3-3/+2
This variable is superfluous, it is only used to copy its value to player_control.totalTime. Since the original source of this value (song->tag->time) will still be available at this point, we can safely remove fileTime.
2008-10-11alsa: don't override libasound's buffer_time and period_timeMax Kellermann1-20/+19
ALSA does a good job measuring its buffer_time and period_time. Don't override its defaults, unless the user demands it.
2008-10-11alsa: re-enable blocking modeMax Kellermann1-15/+2
Revert e4f5d6bd "re-enable-nonblocking, but sleep if busy". Non-blocking mode with manual sleeping doesn't help at all (by the way, the patch should have used snd_pcm_wait() instead of my_usleep()). ALSA knows much more about the hardware quirks, so we just let it do the job.
2008-10-11oss: fix opening default OSS deviceMax Kellermann1-1/+1
Leftover from the output API changes: oss_open_default() was changed to return a void*, but it still returned "0" to report success. Report the OssData pointer instead.
2008-10-10player: don't wake up decoder after every frameMax Kellermann1-1/+7
The decoder was woken up after each chunk which had been played. That caused a lot of superfluous context switches. Wake up the decoder only when a certain amount of the buffer has been consumed. This formula is somewhat arbitrary, and has to be proven experimentally.
2008-10-10mp3: dither an arbitrary number of channelsMax Kellermann1-6/+3
The mp3 plugin did not use the MAD_NCHANNELS() value correctly: when a stream was not stereo, it was assumed to be mono, although the correct number was passed to MPD. libmad doesn't support more than 2 channels, but this change allows gcc to optimize its inlining strategy.
2008-10-10mp3: hard-code dithering to 16 bitsMax Kellermann1-8/+6
The dithering function audio_linear_dither() worked for signed 16 bits only anyway, having a variable "bits" just disables important gcc optimizations.
2008-10-10player: added player_get_audio_format()Max Kellermann3-22/+8
player_get_audio_format() replaces getPlayerSampleRate(), getPlayerBits(), getPlayerChannels().
2008-10-10player: added player_control.audio_formatMax Kellermann4-17/+12
This replaces the attributes bits, channels, sampleRate.
2008-10-10mvp: unsinged integersMax Kellermann1-4/+5
Fix some gcc warnings by using unsigned where appropriate. Declare numfrequencies as "const", and replaced the magic number 12 with a sizeof.
2008-10-10mvp: adapt to the new output device APIMax Kellermann1-20/+21
2008-10-10mvp: missing includesMax Kellermann1-0/+5
Again, a plugin which was disabled in my test environment and suffered from compilation errors.
2008-10-10oss: added OssData.audio_formatMax Kellermann1-19/+20
This replaces the separate properties channels, sampleRate, bits.
2008-10-10audio_format: added audio_format_frame_size()Max Kellermann5-7/+12
A frame contains one sample per channel, thus it is sample_size * channels. This patch includes some cleanup for various locations where the sample size for 24 bit audio was still 3 bytes (instead of 4).
2008-10-10audio_format: renamed sampleRate to sample_rateMax Kellermann27-97/+96
The last bit of CamelCase in audio_format.h. Additionally, rename a bunch of local variables.
2008-10-10audio_format: unsigned integersMax Kellermann6-15/+15
"bits" and "channels" cannot be negative.
2008-10-09update: replaced update_return with global "modified" flagMax Kellermann1-65/+41
There is only once update thread at a time. Make the "modified" flag global and remove the return values of most functions. Propagating an error is only useful for updateDirectory(), since updateInDirectory() will delete failed subdirectories.
2008-10-09update: make the variable "progress" staticMax Kellermann1-1/+1
2008-10-09update: don't print debug message when song was not modifiedMax Kellermann1-4/+5
When a song file was not modified, MPD printed the debug message "not a directory or music", because the first "if" branch did not return.
2008-10-09update: fix memory leak in directory_update_init()Max Kellermann1-1/+4
When the update queue is full, directory_update_init() did not free the path argument.
2008-10-09update: make the job id unsignedMax Kellermann4-9/+13
Since the return value cannot be -1 anymore, we can make it unsigned.
2008-10-09update: job ID must be positiveMax Kellermann4-20/+16
The documentation for directory_update_init() was incorrect: a job ID must be positive, not non-negative. If the update queue is full and no job was created, it makes more sense to return 0 instead of -1, because it is more consistent with the return value of isUpdatingDB().
2008-10-09update: check progress!=IDLE in reap_update_task()Max Kellermann1-0/+3
When the update task is idle, there is no need to check for deleted songs. Return early from reap_update_task().
2008-10-09update: fixed stack corruption due to pthread_join() callMax Kellermann1-1/+3
pthread_join() expects a "pointer to a pointer" parameter, but it got a "pointer to an enum". On AMD64, an enum is smaller than a pointer, leading to a buffer overflow.
2008-10-09updated: always call removeDeletedFromDirectory()Max Kellermann1-3/+1
Removed the local variable "was_empty": don't remember if the directory is new. Always call removeDeletedFromDirectory().
2008-10-09update: eliminated addSubDirectoryToDirectory()Max Kellermann1-27/+8
In updateInDirectory(), add new directories immediately and delete them when they turn out to be empty. This simplifies the code and allows us to eliminate addSubDirectoryToDirectory().
2008-10-09update: make the "song" variable more localMax Kellermann1-3/+2
2008-10-09update: do the recursive directory check only onceMax Kellermann1-8/+6
The recursive checks were performed in several functions, and sometimes a directory was checked twice.
2008-10-09update: copy stat to new directoryMax Kellermann1-1/+3
When reading a new directory, copy the stat data (which we have anyway) to the directory struct. This may save a stat() in the future.
2008-10-09update: avoid duplicate stat() callsMax Kellermann1-27/+35
Pass a pointer to the stat struct to more functions.
2008-10-09update: rewrote updatePath() using updateInDirectory()Max Kellermann1-68/+21
updatePath() duplicated a lot of code from the more generic updateInDirectory(). Eliminate most of updatePath() and call updateInDirectory().
2008-10-09update: don't export updateDirectory()Max Kellermann4-14/+25
If the user requests database update during startup, call directory_update_init(). This should be changed to fully asynchronous update later. For this to work, main_notify has to be initialized before db_init().
2008-10-09update: pass const pointer to addSubDirectoryToDirectory()Max Kellermann1-1/+1
The stat struct isn't going to be modified, make it const.
2008-10-09update: never pass root path to updatePath()Max Kellermann1-6/+1
update_task() already checks if it has got a root path. Extend this check and in turn remove a check in the inner function updatePath().
2008-10-09database: renamed get_get_song() to db_get_song()Max Kellermann5-8/+8
Search'n'replace typo..
2008-10-09update: don't sanitize the path againMax Kellermann1-13/+3
directory_update_init() has to be called with a path that is already sanitized. Don't call sanitizePathDup() again in updatePath().
2008-10-09update: merged addDirectoryPathToDB() into addParentPathToDB()Max Kellermann1-25/+3
The algorithm in addDirectoryPathToDB() can be simplified further if it is combined with the function addParentPathToDB(). Since there is no other caller of addDirectoryPathToDB(), we can do that. This saves another large stack buffer.
2008-10-09update: make addDirectoryPathToDB() non-recursiveMax Kellermann1-11/+15
This recursive function is very dangerous because it allocates a large buffer on the stack in every iteration. That may be misused to generate a stack overflow.
2008-10-09update: delete directory after failed updateMax Kellermann1-1/+8
When a directory cannot be updated, there must be something wrong with it, and the database contains stale data. Remove it.
2008-10-09update: moved code to directory_make_child_checked()Max Kellermann1-22/+25
The branching looks a bit complicated in addDirectoryPathToDB() - improve its readability by moving code to a simplified separate function.
2008-10-09update: clear root after errorMax Kellermann1-0/+1
When the root directory fails to update, its contents are invalid. Clear it then.
2008-10-09update: locked delete after update errorMax Kellermann1-1/+40
When a directory failed to update, it was removed from the database, without freeing all children and songs (memory leak), and without locking (race condition). Introduce the functions clear_directory() and delete_directory(), which do both.
2008-10-09dirvec: added dirvec_clear()Max Kellermann1-0/+6
2008-10-09update: removed addToDirectory()Max Kellermann1-39/+12
Use updateInDirectory() instead of addToDirectory(). Eliminate a duplicate stat() in updateInDirectory() by calling song_file_update() directly.
2008-10-09directory: don't query database during loadMax Kellermann1-2/+2
Don't use db_get_directory() and traverse the full path with every directory being loaded. Just see if the current parent contains the entry. Everything else would be invalid anyway..
2008-10-09directory: check the absolute path of a subdirectory while loadingMax Kellermann1-0/+4
A manipulated database could trigger an assertion failure, because the parent didn't match. Do a proper check if the new directory is within the parent's. This uses FATAL() to bail out, so MPD still dies, but it doesn't crash.
2008-10-09directory: added inline wrappers for accessing childrenMax Kellermann3-7/+20
Some tiny utilities... wrappers like these may become helpful when we introduce locking.