summaryrefslogtreecommitdiff
path: root/mp.c (follow)
Commit message (Expand)AuthorAge
* Merge topic branch t/spdx into masterAndre Noll2026-03-26
|\
| * Switch to SPDX identifiers.Andre Noll2026-03-17
* | Simplify and rename get_attribute_bitnum_by_name().Andre Noll2026-03-17
* | Implement selector abstraction.Andre Noll2026-03-17
* | attribute.c: Switch from unsigned char to uint8_t.Andre Noll2026-03-17
|/
* mood parser: Demote severity of parse errors.Andre Noll2025-10-19
* mp.c: Remove a dead store.Andre Noll2025-05-22
* Include regex.h from para.h.Andre Noll2025-05-19
* Add missing newline in mp_init() error string.Andre Noll2025-04-07
* Rename mood_switch(), mood_close(), playlist_{open/close}.Andre Noll2022-10-17
* Clean up and rename change_current_mood().Andre Noll2022-10-17
* string: Rename para_calloc() -> zalloc().Andre Noll2022-07-29
* string: Rename para_malloc() -> alloc().Andre Noll2022-07-29
* Merge branch 'maint'Andre Noll2022-03-12
|\
| * mp.c: Fix memory leak on parse errors.Andre Noll2022-03-12
* | mood: Make "duration" a new keyword for the mood grammar.Andre Noll2021-10-10
|/
* server: Don't crash on blank moods.Andre Noll2021-05-06
* mp: Always set mp_context to NULL on errors.Andre Noll2020-09-17
* Merge branch 'refs/heads/t/doc'Andre Noll2018-05-06
|\
| * Fix bad grammar "allows <infinitive>".Andre Noll2018-02-11
* | mp.c: Fix typo in comment.Andre Noll2018-01-14
|/
* Shorten copyright notice.Andre Noll2017-09-22
* Version 2 moods.Andre Noll2017-08-20
&id=379a2724984d903b7be8981a85b6cc82cab6ea90&follow=1'>string.c: Use $HOME to get the home directory.Andre Noll This is actually simpler than using getpwuid(), and it shuts up a valgrind warning as well. 2007-09-12vss_init(): Use FOR_EACH_AUDIO_FORMAT() instead of open coding the loop.Andre Noll Fixes a segfault on startup in case not all three audio formats are supported. 2007-09-10Fix afs_shutdown().Andre Noll Unregister tasks as soon as we catch a terminating signal and call afs_shutdown() when sched() returns. 2007-09-10osl.c: Dereference pointer _after_ checking for NULL.Andre Noll 2007-09-10afs: Replace DATABASE_DIR by a runtime config option.Andre Noll Also, split afs_init() into two parts: The new open_afs_tables() that does what its name suggests and the remaining part that initializes the scheduler. 2007-09-10afs: Minor improvements and fixes.Andre Noll - Fix audio format handler output of ls -v. - add_one_audio_file(): Write log messages to the client fd instead of para_server's logfile. 2007-09-10Fix two typos in documentation.Andre Noll 2007-09-10Doxyfile: set EXTRACT_ALL to yes.Andre Noll Otherwise doxygen gives zillions of warnings. 2007-09-10Add a new style file.Andre Noll For v0.3 the outfit should at least change a bit ;) 2007-09-10afs com_add(): Recognize also audio formats different from mp3.Andre Noll This required adding two more callbacks: path_brother_callback() and hash_sister_callback(). These are called from add_one_audio_file() which runs from handler context and can thus not access the database directly. 2007-09-09Change the type of the argv argument of all commands.Andre Noll The new type, char * const * const argv is what the exec functions also take. This avoids some warnings. 2007-09-09Fix some format string warnings on x86_64.Andre Noll 2007-09-09Add documentation for com_add().Andre Noll 2007-09-09Makefile.in: Add afs_command_list.man to the list of server commands.Andre Noll 2007-09-09vss.c: Introduce get_audio_file_info().Andre Noll This is going to be used from within aft's com_add() which ATM only supports mp3. 2007-09-09afh.h: Kill unused SUPPORTED_AUDIO_FORMATS_ARRAY.Andre Noll 2007-09-09afs.c: Kill unused struct callback_data.Andre Noll