summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* module-equalizer-sink: disable active profile name restoration as something ↵Jason Newton2009-10-021-7/+7
| | | | | | in pack/unpack is funky and I don't have time for a proper fix
* module-equalizer-sink: *added client initiated sync support for filter state ↵Jason Newton2009-10-021-24/+35
| | | | *added note of possible unstable behavior with next-power-of-2 sample rate calculation
* module-equalizer-sink: resyncing with head and fix invalid writesJason Newton2009-10-021-105/+108
| | | | | | | | | | * pa_log->debug for default equalizer notification * partially fixed infinite rewind bug * set max_request to window_size first iteration * swap order inside ROUND_UP calls * resync pa_sink_input_new changes * change pa_sample_clamp parameters to be correct to fix invalid writes * reenable proper reset logic + proper request size
* module-equalizer-sink: resync with ladspa parent sinkJason Newton2009-09-291-3/+5
|
* module-equalizer-sink: fix improper usage of pa_modargs_get_value_boolean ↵Jason Newton2009-09-291-1/+2
| | | | for u->set_default
* module-equalizer-sink: added server side persistance of profile namesJason Newton2009-09-291-31/+190
|
* module-equalizer-sink: per-channel filtering support + profiles, easier ↵Jason Newton2009-09-291-150/+371
| | | | default configuration
* module-equalizer-sink: fixed a bug w/ new zero-latency input scheme (that ↵Jason Newton2009-09-291-23/+27
| | | | was an interesting/cool bug!)
* module-equalizer-sink: added support for preampJason Newton2009-09-291-120/+159
|
* module-equalizer-sink: drop old macros for new library based onesJason Newton2009-09-291-7/+6
|
* module-equalizer-sink: fixed timeval initializationJason Newton2009-09-291-6/+7
|
* module-equalizer-sink.c: swapped order of attach_within_thread and ↵Jason Newton2009-09-291-3/+3
| | | | set_max_request within sink_input_attach_cb
* module-equalizer-sink.cJason Newton2009-09-291-5/+2
| | | | i->sink -> i in pa_get_sink_max_request*
* module-equalizer-sinkJason Newton2009-09-291-299/+257
| | | | | | | | | | | exchanged improper usage of memblockq_peek'd memchunk for silence block dropped unneeded function prototypes changed mround to be slightly more elegant __restrict__ -> restrict for c99 removed unneeded pa_aupdate_swap calls first_iteration -> pa_bool_t cleaned up some usage of pa_malloc0 where pa_new0 was more appropriate cruft removal, whitespace fixes and reordering of variables
* module-equalizer-sink:Jason Newton2009-09-291-84/+100
| | | | | merging in upstream changes whitespace fix and fix for first iteration un-windowing
* module-equalizer-sink:Jason Newton2009-09-291-30/+67
| | | | reworked processing so we don't have input->output delay of R samples
* module-equalizer-sink:Jason Newton2009-09-291-5/+7
| | | | | | | fix for peek returning a null memblock pa_log -> pa_log_debug for fft size updated module description fixed a comment in dbus error for incorrect x positions
* module-equalizer-sink:Jason Newton2009-09-291-3/+12
| | | | | | proper fix for pa_xmalloc(0) given that 0 is illegal fix coefficients in case there's no resume state loadprofile now signals filterchanged
* module-equalizer-sink:Jason Newton2009-09-291-136/+194
| | | | | | | | dbus: eliminated some redundant code in dbus handlers/getall switched filter back to being a property signals for changed profiles, added/removed sinks, filter updates and sink reconfigurations fixed timing routines
* module-equalizer-sink: reverted buffering logic back to how the ladspa sink ↵Jason Newton2009-09-291-103/+75
| | | | did it
* module-equalizer-sink:Jason Newton2009-09-291-11/+17
| | | | | add lennard's fix for piggy-back sinks in pop_cb fixed some tsched issues
* module-equalizer-sink:Jason Newton2009-09-291-160/+613
| | | | | | | dbus properties and manager so that multiple sinks can be loaded and mixers can be equalizer-sink aware functionality to seed new filters quickly (rteq guis) profile support extra checking in client->server dbus messages
* module-equalizer-sink:Jason Newton2009-09-291-72/+147
| | | | | | | | added support for suspend/resume of filter coefficients unregister the correct dbus interface. made equalizer state file sink index dependent expanded dbus properties whitespace
* module-equalizer-sink:Jason Newton2009-09-292-288/+461
| | | | | | | | added dbus support removed cruft from inherited from ladspa module and improved clarity switched dsp processing to reference implementation until project is more mature tsched=0 seems to help with the micro-dropouts/crackling! oh my! reformatting/spaces
* module-equalizer-sink:Jason Newton2009-09-292-157/+244
| | | | | | removed liboil added sse2 optimized dsp logic implementation cleaned up a bit
* module-equalizer-sink:Jason Newton2009-09-291-27/+29
| | | | | first commit of a working state (cpu speed dependant) added noop processing for filter debugability
* module-equalizer-sink: simplified sink_input pop callback and introduced new ↵Jason Newton2009-09-291-143/+198
| | | | variables that simplify different strategies.
* module-equalizer-sink: trying new buffering strategiesJason Newton2009-09-292-145/+160
|
* module-equalizer-sink: attempt different buffering strategyJason Newton2009-09-291-24/+27
|
* module-equalizer-sink: added more assertions to aid in debuggingJason Newton2009-09-291-5/+10
|
* module-equalizer-sink:Jason Newton2009-09-291-162/+106
| | | | | | added temporary debugging output to track filter output removed dead code only a small amount of crackling remains
* module-equalizer-sink addedJason Newton2009-09-292-0/+857
| | | | src/Makefile.am: added module-equalizer-sink
* polkit: drop left-over polkit policy file from git treeLennart Poettering2009-09-291-50/+0
|
* Don't refuse to start on systems using GNU stow, graft, STORE et alNix2009-09-291-2/+7
| | | | | | | | | | | | | | | | | | | | There are multiple package management systems out there which implement packages using symlinks. The recent (otherwise useful) check to ensure that a re-executed pulseaudio is actually reexecuting itself unfortunately breaks in the presence of all these packaging systems, because PA_BINARY refers to its installed location (e.g. /usr/local/bin/pulseaudio), which is a symlink to the binary (e.g. /usr/local/stow/pulseaudio-0.9.18/bin/pulseaudio), because /proc/self/exe always contains the canonical path of the executable, with all symlinks resolved. (At least one distribution uses a symlink-based packaging system, so will be forced to apply this locally in any case.) The fix is simple: canonicalize PA_BINARY before equality-testing. (This should be completely safe, because the OS does just that when PA_BINARY is executed.) The patch is against 0.9.18, but applies without fuzz to current master.
* reserve: downgrade reserve logic messages, so that reusing pa in two ↵Lennart Poettering2009-09-281-5/+5
| | | | sessions does not create spew in syslog
* svolume: tweak constraints for 32 bitsWim Taymans2009-09-232-4/+4
| | | | | | Tweak the constraints a little so that register starved 32bit systems can select a stack variable for the channel paramter instead of reusing one of the registers we're using in the code.
* libpulse: Add *_NOFLAGS flags with value 0 for various enumsColin Guthrie2009-09-221-0/+11
| | | | This avoids the need for ugly casting in client implementations.
* tunnel: fix parsing of source info from newer serversColin Guthrie2009-09-201-2/+29
|
* tunnel: fix parsing of sink info from newer serversEmil Renner Berthing2009-09-201-0/+27
|
* stream-restore: Comment fixColin Guthrie2009-09-201-1/+1
|
* core: dump proplist when creating stream similar to how we already to it for ↵Lennart Poettering2009-09-202-4/+12
| | | | sinks/sources
* alsa: make build gcc clean on 32bitLennart Poettering2009-09-201-1/+1
|
* memtrap: properly add items to linked listLennart Poettering2009-09-191-1/+4
|
* gconf: run the wrapper script when running gconf-helper from build treeLennart Poettering2009-09-181-1/+1
|
* namereg: choose default sink/source as soon as one becomes availableLennart Poettering2009-09-181-1/+12
|
* memblock: don't try to reuse PA_MEMBLOCK_APPENDED memblocks since they ↵Lennart Poettering2009-09-181-4/+11
| | | | usually are much bigger than we want them
* mainloop: fix detection of rt clocksLennart Poettering2009-09-181-8/+7
|
* socket-client: modernizationsLennart Poettering2009-09-182-38/+24
|
* memblock: modernizationsLennart Poettering2009-09-181-3/+2
|
* conf: Fix typo in daemon.conf: rlimit-rtttime - too many t'sColin Guthrie2009-09-181-1/+1
| | | | Spotted by peol on IRC