summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2011-06-22capture: Add the passthrough format negotiation to capture streams.Colin Guthrie16-103/+392
This helps to keep the API more symmetrical and also potentially allows support for passthrough monitor sources at some point in the future.
2011-06-22def: Add some flags for source outputs.Colin Guthrie1-1/+28
These flags will be required in upcoming work to integrate format and volume support for source outputs.
2011-06-22introspect: Clear out memory properly on error.Colin Guthrie1-42/+40
2011-06-22alsa-sink: Some trivial tidyupsColin Guthrie4-17/+20
Mostly typo fixes but also a change to make a function relating to sink inputs use more generic variable names.
2011-06-22bluetooth-discover: Remove remaining ifdef NOKIAs.Tanu Kaskinen1-12/+3
These were supposed to be removed already in 13849f153, but at that time I missed the ifdefs in module-bluetooth-discover.c.
2011-06-22build-sys: module-equalizer-sink needs dbus.Colin Guthrie1-0/+5
2011-06-22Merge remote-tracking branch 'mkbosmans/merge/build-sys'Colin Guthrie1-0/+5
2011-06-22SSE/MMX: Fix problem with highpitched noise on i386David Henningsson2-4/+20
The "rm" basm constraint doesn't work with my version of gcc (4.5.2), not even in a simple example. Since we usually only have 5 registers available on i386, force it to be memory on that architecture. Signed-off-by: David Henningsson <david.henningsson@canonical.com>
2011-06-20build-sys: Reset CFLAGS after DBUS checkMaarten Bosmans1-0/+5
2011-06-19stream: Simplify passing of formats in extended APIArun Raghavan3-11/+14
Passing a NULL-terminated array of pa_format_info pointers is a bit unwieldy for clients. Instead of this, let's pass in an array of pointers and the number of elements in the array.
2011-06-19stream: Fix a couple of format_info leaksArun Raghavan1-1/+4
2011-06-19protocol-native: Don't leak formatsArun Raghavan1-3/+16
This clarifies some ownership issues with the formats idxset on the server side so we don't end up leaking formats on errors.
2011-06-18Disable check for pthreads on win32Fritz Elfert1-1/+3
And do not use sched_get_priority on mingw with win32 pthreads installed
2011-06-14protocol-native: Use original requested latency on stream movesArun Raghavan1-4/+12
We were calculating new latency based on the latency set on the old sink/source, rather than the actual latency requested by the client. Over a series of moves, this will lead the latency being ~halved each time, resulting in an eventual rewind flood from a latency that cannot be handled.
2011-06-13echo-cancel: More preprocessing fixesArun Raghavan1-2/+6
The speex_preprocess_ctl() function takes a spx_int32_t, but we've been passing a pa_bool_t, which could potentially crash.
2011-06-13echo-cancel: Fix preprocessor initialisationArun Raghavan1-1/+1
We were using the block size in bytes instead of samples, which meant preprocessing was broken. This fix makes a large-ish difference in the quality of echo-cancellation with speex.
2011-06-12win32: define WIN32_LEAN_AND_MEANMaarten Bosmans1-0/+1
This makes windows.h include less headers. Otherwise boolean is typedef'ed and that clashes with libjson.
2011-06-12gitignore: Add connect-stress, extended-test and format-test.Tanu Kaskinen1-0/+3
2011-06-12tests: Update extended API testArun Raghavan1-3/+3
The test wasn't updated after we changed the pa_format_info proplist format.
2011-06-08combine: Fix a crash on shutdown if the module is loaded outside of our control.Colin Guthrie1-5/+7
By using module indexes rather than module pointers we avoid this posibility.
2011-06-06device-manager: Free a hook slot to prevent segv on unloadColin Guthrie1-0/+3
2011-06-06pulsecore: Add a couple pa_asserts() on pa_tagstruct* calls.Colin Guthrie1-0/+2
2011-06-02module-combine-sink: Check running flag before rendering in null modeForest Bond1-0/+4
This makes process_render_null consistent with render_memblock and avoids introducing slight inaccuracies in early latency estimates.
2011-06-02module-combine-sink: Initialize smoother in paused stateForest Bond1-6/+9
The smoother is paused on initialization and resumed when the sink state is set to running. Otherwise, early latency estimates are too low since there is some delay between module initialization and entering the running state. After the smoother is initially resumed, it is paused when the sink state is not running. The previous behavior was to pause only when the sink enters suspended state, however, this would lead to large errors in latency estimates after the sink has been idle for some time.
2011-06-02module-combine-sink: Initialize smoother with offset pa_rtclock_now()Forest Bond1-1/+1
The smoother was being initialized with offset zero, which caused the sink latency to be unconditionally reported as zero.
2011-06-02streams: Fix the actual resampler method shown in debug messages.Colin Guthrie2-0/+2
2011-05-30osx: pass -headerpad_max_install_names to the linker, tooDaniel Mack1-1/+1
This option won't make it to the actual libtool command which does the linking when not prefixed with -Wl,
2011-05-30alsa-mixer: Fix the assumption that volume is always positiveLu Guanqun1-1/+5
Add a variable to track whether the actual volume is set or not. Suppose this: min volume: -126 max volume: 0 then when user wants to set some constant volume to -10, it would fail. While the alsa values are typically positive, some values are "funky" and have negative values. It is desirable to fix this at the alsa level so that the numbers are positive, but it's not technically invalid, and thus we have to support it. Discussed here: http://thread.gmane.org/gmane.comp.audio.pulseaudio.general/9832 and http://thread.gmane.org/gmane.linux.alsa.devel/85459
2011-05-28echo-cancel: Fix a crash is speex cleanupArun Raghavan1-1/+2
If module initialisation fails, the speex done() function might try to free a value that's not been allocated yet. Adding protection for this condition.
2011-05-28echo-cancel: Fix echo suppression, add some knobsBart Cerneels2-3/+36
The echo suppress attenuation value was being incorrectly modified. Fixed and added 2 arguments to change the attenuation of the residual echo filter. Default values of the speex preprocessor will be used when omitted.
2011-05-28echo-cancel: Speex preprocessor has to run *after* the AEC.Bart Cerneels1-3/+4
This is how it is expected to be run.
2011-05-24echo-cancel: Add speex preprocessingArun Raghavan2-3/+64
This allows the selective enabling of speex' preprocessing algorithms before running the echo-canceller -- for now this includes automatic gain control, noise suppression and echo suppression. It's all off by default for now, though at some point in the near future we might want to enable at least denoising by default. The denoising works pretty well, though we might want to add a way to tweak the noise-suppression knob that libspeex provides. The AGC option is just a stop-gap -- we need a real AGC mechanism that tweaks the source volume rather than doing this in software. The speex documentation mentions VAD and dereverb, but it appears that these are not complete yet. We don't do all this in a separate module from module-echo-cancel to avoid the overhead of adding another virtual source. It makes more sense to make a separate virtual source module that can be used for cases where preprocessing is useful but AEC is not (for e.g. noise suppression for fan noise in a recording application). Another reason to keep this integrated with the AEC module is that the echo suppression bits use the speex echo canceller state. This does leak some information about the AEC implementation into module-echo-cancel, but this is unavoidable.
2011-05-20format: Fix channel map handlingArun Raghavan2-7/+9
Channel map handling in the extended API was broken. Thanks for Milos_SD for pointing this out on IRC.
2011-05-20echo-cancel: Remove extraneous debug messageArun Raghavan1-1/+0
This was making it impossible to run in debug mode with save_aec=1
2011-05-16echo-cancel: Don't overpad variableArun Raghavan1-1/+1
The padding was to be 16 bytes, not 16 elements.
2011-05-16build-sys: Link libpulse directly to libdbus-1 if neededSjoerd Simons1-1/+6
Linking libpulse with gold or when using ld --no-add-needed fails as libpulse uses dbus methods directly but isn't explicitly linked to it. So link to it when needed :)
2011-05-16protocol-native: Fix memory leaks introduced in protocol 21 (passthrough ↵Colin Guthrie1-26/+30
support) The proplist used may never be freed if an error condition was found with CHECK_VALIDITY macro and the formats idxset was never freed regardless of error state. This change fixes adds a new maco CHECK_VALIDITY_GOTO() which allows for cleanup to be done before returning.
2011-05-16sink-input: Fix memory leak of proplist when sending format-changed eventsColin Guthrie1-0/+1
2011-05-15loopback: Add a modarg for disabling remixing.Tanu Kaskinen1-5/+13
2011-05-15bluetooth: Fix early return styling and add missing return valueColin Guthrie1-5/+6
Thanks to Tanu Kaskinen for pointing out the missing return.
2011-05-15suspend-on-idle: Trigger mempool vacuumingJyri Sarha1-1/+40
In a setup with one or more filter sinks or sources there is always at least one stream existing. In such a situation normal mempool vacuuming never happens. This patch causes suspend-on-idle module to vacuum memory when ever it notices that all sinks and sources are suspended. The behavior can be enabled with a module parameter.
2011-05-15protocol-native: Stop auto timing updates if connected to suspended sink or ↵Jyri Sarha1-4/+24
source This quite is an old patch. It was added to N900 to avoid unnecessary wake-ups when the phone is in power save mode (= blank screen and no user interaction). In this situation if the user had a browser window with flash animation open pulseaudio kept waking up every 10 seconds, causing a severe hit to use times. Anyway I do not see any reason to send timing updates if the sink or source where the stream is connected to is suspended.
2011-05-15tests: Fix resampler-test.Colin Guthrie1-4/+3
This has been broken since c376ac5920fdeb46ca844d9518e22f17adffb635 when run without any arguments. Passing in -v (verbose) caused the test to work fine. I think this oversight is just a thinko in the original work but it obviously broke 'make check' and thus distcheck. Also fix a couple compiler warnings.
2011-05-15Merge branch 'passthrough'Colin Guthrie45-198/+1758
2011-05-15module-tunnel: Update for recent protocol changesArun Raghavan1-0/+59
This updates the tunnel module for protocol version >= 19. module-tunnel-sink does not proxy server-side passthrough support (yet). This would require a few more changes, namely keeping track of what formats are available and if any other sink inputs are connected on the server-side.
2011-05-15format: Add some convenience API for setting propertiesArun Raghavan3-3/+38
Adds functions to set sample format, rate, channels and channel map on a format to make life easier for users of the API.
2011-05-15format: Extend properties to handle lists/rangesArun Raghavan6-22/+383
This replaces the simple string used by pa_format_info's proplist with a JSON string (accessed via new API only). This allows us to express lists and ranges more cleanly, and embed type information for future extensibility. We use json-c for JSON parsing. This is a lightweight depdency (32 KB on my system) and avoids the hassle of having to reinvent a JSON parser. Also included is a test which verifies functionality and is valgrind-clean.
2011-05-15sink-input: Provide more information to client when format is lostArun Raghavan2-1/+13
When the sink format changes and we kill the stream, clients need a way to know (a) what device they should reconnect to, and (b) what the stream running time was when the stream got killed (pa_stream_get_time() won't work after the stream has been killed). This adds these two bits of information in the event callback's proplist parameter.
2011-05-15format: Add correct sample spec conversion for E-AC3Arun Raghavan1-0/+3
IEC61937-encapsulated E-AC3 frames contain 6 audio blocks per substream, which corresponds to 1536 samples contained a 24576-byte frame. To cope with this, we maintain the s16le stereo sample spec, but quadruple the sample rate so that the conversion remains accurate.
2011-05-15format: Export pa_format_info_is_compatible in APIArun Raghavan4-2/+11
This allows clients to perform checks between formats as well.