summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
Commit message (Collapse)AuthorAgeFilesLines
* Add new option to disable remixing from/to LFE and set it to on by defaultLennart Poettering2008-09-056-7/+16
|
* include build and runtime host information in debug outputLennart Poettering2008-09-052-0/+9
|
* if we are exiting due to idleness, say soLennart Poettering2008-09-051-0/+1
|
* command_get_info() segv in some conditionsMarc-André Lureau2008-09-031-1/+1
| | | | Signed-off-by: Lennart Poettering <lennart@poettering.net>
* Implement "early requests" mode.Lennart Poettering2008-09-031-34/+138
| | | | | | | PA_STREAM_EARLY_REQUESTS is a new flag that will modify buffering metric selection behaviour a bit. This code is good for broken ALSA/OSS clients that ignore 'readability' on the fds in question and schedule audio via usleep() instead.
* Rework pa_machine_id() a bitLennart Poettering2008-09-031-10/+27
| | | | | Guarantee this function never fails, use POSIX gethostid as last resort. Add comments.
* avoid rounding errors on requested buffering metricsLennart Poettering2008-09-011-11/+18
|
* output relative timestamps in addition to absolute timestamps when loggingLennart Poettering2008-09-011-4/+14
|
* remove a few more gcc warningsLennart Poettering2008-08-306-10/+10
|
* fix a few compiler warnings on older gccLennart Poettering2008-08-295-6/+6
|
* reword amd64 messageLennart Poettering2008-08-291-1/+1
|
* change default log level for the library to PA_LOG_ERROR to avoid spamming ↵Lennart Poettering2008-08-291-1/+1
| | | | to stderr more often
* downgrade a few messagesLennart Poettering2008-08-291-4/+4
|
* the native atomic ops implementation for amd64 seems to work fineLennart Poettering2008-08-291-3/+3
|
* Change return value of cmpxchg atomic op to pa_bool_tLennart Poettering2008-08-291-14/+16
|
* optionally add timestampts to every line loggedLennart Poettering2008-08-292-9/+32
|
* fix up latency before calling into stream code, to make sure we don't ask ↵Lennart Poettering2008-08-294-13/+16
| | | | for too much data to early
* rework pa_ulog2 and base it on __builtin_clz if available, make ↵Lennart Poettering2008-08-291-15/+21
| | | | pa_make_power_of_two based on it
* add byte-to-usec and usec-to-byte converters that round up, not downLennart Poettering2008-08-282-0/+36
|
* call close() in a loop to catch EINTRLennart Poettering2008-08-261-1/+9
|
* add a few missing castsLennart Poettering2008-08-205-12/+12
|
* use final glibc eventfd() instead of our homegrown syscall invocationsLennart Poettering2008-08-191-37/+13
|
* rework cpu limit logic to use monotonic instead of wall clock timeLennart Poettering2008-08-191-0/+1
|
* simplify pa_start_child_for_read by using ↵Lennart Poettering2008-08-191-57/+3
| | | | pa_close_all()/pa_reset_sigs()/pa_unblock_sigs()
* add a few more gcc warning flags and fix quite a few problems found by doing soLennart Poettering2008-08-1937-326/+346
|
* Merge commit 'flameeyes/autoconf-2.62'Lennart Poettering2008-08-181-1/+1
|\
| * Create a new macro for checking compiler support for TLS.Diego 'Flameeyes' Pettenò2008-08-081-1/+1
| | | | | | | | | | | | | | | | | | | | Create a new macro that can be shared between projects to check for __thread support by the compiler. This macro might come useful for xine-lib too so I want to keep it separate for easier importing it over. Name the defined macro SUPPORT_TLS___THREAD to follow the same style as the checks from attributes.m4.
* | a few modernizationsLennart Poettering2008-08-181-6/+6
| |
* | add some code to make invalid valgrind warnings go awayLennart Poettering2008-08-181-1/+13
| |
* | allow clients to not specify the volume for their streamsLennart Poettering2008-08-181-3/+13
| |
* | rework validity checking of sink/source/... namesLennart Poettering2008-08-181-18/+43
| |
* | save a bit of memoryLennart Poettering2008-08-184-26/+29
| |
* | pass force_refresh=FALSE to all volume/mute read invocationsLennart Poettering2008-08-133-12/+12
| |
* | rework volume/mute APIs: split out pa_xx_set_soft_volume() and add ↵Lennart Poettering2008-08-134-14/+38
| | | | | | | | force_refresh argument to read functions
* | initialize IP ACLs properlyLennart Poettering2008-08-112-2/+2
| |
* | otpimize mixing code a bit by moving a few checks out of the inner loopsLennart Poettering2008-08-111-83/+39
| |
* | optimize volume changing a bit by only using a single counter for the inner ↵Lennart Poettering2008-08-111-31/+36
| | | | | | | | loops instead of two
* | adhere to struct gcc aliasing rulesLennart Poettering2008-08-111-7/+3
| |
* | fix bad memory accessLennart Poettering2008-08-091-1/+1
| |
* | adhere to C strict aliasing rulesLennart Poettering2008-08-091-3/+8
| |
* | don't use PA_GCC_UNUSED anymoreLennart Poettering2008-08-0913-58/+58
| |
* | free regex_t after useLennart Poettering2008-08-091-4/+11
| |
* | set errno properly in all functions from pid.cLennart Poettering2008-08-091-3/+18
| |
* | set errno properly in all functions from core-util.cLennart Poettering2008-08-091-23/+95
| |
* | add locale support to pa_parse_boolean()Lennart Poettering2008-08-091-0/+35
| |
* | make sure we don't crash if pa_thread_join() is called more than once on the ↵Lennart Poettering2008-08-081-1/+8
|/ | | | same pa_thread object
* remove some leftover debug stringLennart Poettering2008-08-071-1/+1
|
* Modify pa_state_path() to take an additional argument for prepending the ↵Lennart Poettering2008-08-072-6/+19
| | | | machine id to the file name.
* Rework state/runtime directory logicLennart Poettering2008-08-071-26/+221
| | | | | | | The runtime directory is now guaranteed to be in /tmp which will hopefully provide support for POSIX file locking and UNIX sockets. The state directory stays in $HOME.
* add new function pa_machine_id()Lennart Poettering2008-08-072-0/+46
|