In the case of USB headsets I think a rule that says if a new local output appears &quot;move all streams (new and current)&quot; to it option would cover 90% of cases with an option to toggle the rule off?<br><br>Thats what I have running anyway at it works as I&#39;d expect<br>
<br>Jason Taylor<br><br><div class="gmail_quote">2009/3/25 Colin Guthrie <span dir="ltr">&lt;<a href="mailto:gmane@colin.guthr.ie">gmane@colin.guthr.ie</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Disclaimer... I&#39;m a bit tired and haven&#39;t proofed this as much as I&#39;d like. And I wrote most of it while in an airport and quite bored.<br>
<br>
The suggestions are my own thoughts and opinions but are perhaps based on inaccurate assumptions, so feel free to correct me and change my opinion!<br>
<br>
<br>
<br>
<br>
<br>
Stream Memory Database and Restoration Rules<br>
============================================<br>
<br>
This document outlines the needs and use case for the stream memory capabilities in pulseaudio and how this information should be used. It finishes with recommendations for implementation.<br>
<br>
Restrictions<br>
============<br>
<br>
The system employed needs to be simple and allow for fully server based management and application of the rules. The logic should be kept simple with minimal overhead but still be powerful enough to meet all the needs of current actual and potential use cases.<br>

<br>
<br>
Current System<br>
==============<br>
<br>
Currently module-stream-restore stores various metadata on streams it sees. This currently consists of:<br>
 * volume<br>
 * channel map<br>
 * mute status<br>
 * device (optional)<br>
<br>
It stores this metadata under a key that governs how it is matched again in the future.<br>
<br>
The key itself has two parts, a prefix from a predefined list and a suffix relating to the specific stream in some way.<br>
<br>
Prefixes include:<br>
 * sink-input-by-media-role<br>
 * sink-input-by-application-id<br>
 * sink-input-by-application-name<br>
 * sink-input-by-media-name<br>
<br>
(where &quot;sink-input&quot; could also be &quot;source-output&quot; for input streams)<br>
<br>
<br>
The specific identifier is suffixed on the end of this, to create a final key that is stored and queried in the database to give final keys of e.g.:<br>
 * sink-input-by-media-role:event<br>
 * sink-input-by application-name:MPlayer<br>
 * etc.<br>
<br>
When a stream is started, module-stream-restore will pick exactly one key that it will use to identify a stream. If the stream has a media role property it will use *-by-media-role. It then falls back to check the different identifiers, in order, as outlined above.<br>

<br>
<br>
<br>
Problems<br>
========<br>
<br>
The current system has a couple limitations.<br>
 1. If a stream has a media role, it is impossible to save a volume for the specific application with that role as the key sink-input-by-media-role:xxxx will always take precidence over a sink-input-by-application-name:yyyy keyed rule.<br>

 2. If an application is modified to start providing new metadata (e.g. a role) the entries for that specific application that were used (sink-input-by-application-name) will no longer be matched and the data will be stale in the file. This is not really a major problem.<br>

 3. The current system only allows for one device to be matched, not an ordered priority list.<br>
<br>
<br>
NB 3 is only strictly problemati in the case of Phonon integration which uses such a scheme.<br>
<br>
<br>
<br>
Use Case<br>
========<br>
<br>
To think about what we need to change in the system we need to look at what the user wants out of the system.<br>
<br>
For the most part we want routing rules to be automatic, but still allow the user the degree of control they need.<br>
<br>
For comparison, Phonon has a device priority list system that allows each role to prioritise the output devices they want to use. When a stream with that role is played, it will go through the list of devices until it finds one that is currently avaialble (i.e. it keeps track of devices that are no longer present - e.g. USB sound cards) and uses that. It offers this priority list for each role, as well as a &quot;global&quot; list, which is used when no role is provided by the application. Generally speaking, users seem happy with this arrangement and this degree of flexibility (albeit there are not many Phonon applications to expliot this flexibility fully yet.<br>

<br>
Looking at native pulse applications, the &quot;default&quot; sink option in pavucontrol (or more correctly in the daemon itself) is the most commonly misunderstood option and amounts to by far and away the most common support issue: &quot;I&#39;ve changed my default to my USB but application X still plays sound via my Interal card&quot;. From an internal prespective, we do not consider this to be a &quot;default&quot; sink at all, but rather a fallback and arguably calling it &quot;default&quot; was a mistake, but the fact remains that users want an &quot;active&quot; default capability in the system somewhere, where changing the default device will actually move any active streams across to that device if they are currently using a different default. Probably the second most common support question is: &quot;I set my USB to default, but then unplugged it and the application started playing on my internal speakers... Great! But when I plugged my USB back in it didn&#39;t move it back. What&#39;s up?&quot;.<br>

<br>
<br>
What to do<br>
==========<br>
<br>
With the above use cases in mind, it&#39;s clear that the current system needs to be revised to cope. In summary the problems we want to address are:<br>
 1. Allow for an &quot;active&quot; default<br>
 2. Allow for a prioritised list of devices to be created (on a per-role basis - finer grained control would be too much).<br>
 3. Allow for applications which have the same role to have independant volumes saved.<br>
<br>
To this end, I think the current volume/map/mute/device database is incorrect. With the flat volume support, I think per-application volumes are more appropriate, rather than per-role.<br>
<br>
I think that a key-&gt;device-&gt;priority table is needed to allow for a given role identifier to have it&#39;s own rules written appropriately. Pulse needs to remember the sinks (and sources) both past and present (including their &quot;nice&quot; name (description)) and provide a way for a UI app to purge a currently unavailable sink (e.g. remove it from the cache).<br>

<br>
When a stream is encountered, it&#39;s role should be checked and the prioritised list of devices loaded for that role. As in Phonon, if a stream does not have a role a &quot;default&quot; priority list should be used. (Optional) A subsequent check should be made to see if any specific rules state that this individual application has a preferred device to allow for fine grained control. If such a rule exists the device should be move to the top of the already loaded priority list or injected there if it does not exist (unlikely). The stream is then restored to the first available device. This priority list should be saved with the stream so it can be easily re-evaluated at any point should new sinks become available later.<br>

<br>
If any priority list is changed (e.g. by a client application) all streams should have their cached priority list invalidated and rebuilt (perhaps the rebuilding can be lazy - e.g. it&#39;s only loaded when needed?)<br>
<br>
With regards to volumes etc., these should be saved against a given application and not a role. To do so at the role level is unlikely to be a useful end user feature.<br>
<br>
With this system in place, a neat and effective UI can be produced and a good mapping into KDE can also exist which will be good for cross desktop accpetance of PulseAudio in the linux world.<br>
<br>
<br>
Implementation<br>
==============<br>
<br>
Currently the routing decision is only processed by module-stream-restore, but this is not sufficient. We need other modules to be able to participate in this process. In order to acheive the above, a new hook (or similar) should be created to allow separate modules to have a say in building the priority list. PA_CORE_HOOK_SINK_INPUT_ROUTE should be called when a new stream is created and whenever the routing logic needs to be be recalculated (e.g. the rules themselves change (or a module participating in rule calculation is [un]loaded), *not* when a new device comes or goes) I would suggest that only the device priority list should be handled in this hook. The volume restoration should probably be handled within the existing PA_CORE_HOOK_SINK_INPUT_NEW hook.<br>

<br>
<br>
-- <br>
<br>
Colin Guthrie<br>
gmane(at)<a href="http://colin.guthr.ie" target="_blank">colin.guthr.ie</a><br>
<a href="http://colin.guthr.ie/" target="_blank">http://colin.guthr.ie/</a><br>
<br>
Day Job:<br>
  Tribalogic Limited [<a href="http://www.tribalogic.net/" target="_blank">http://www.tribalogic.net/</a>]<br>
Open Source:<br>
  Mandriva Linux Contributor [<a href="http://www.mandriva.com/" target="_blank">http://www.mandriva.com/</a>]<br>
  PulseAudio Hacker [<a href="http://www.pulseaudio.org/" target="_blank">http://www.pulseaudio.org/</a>]<br>
  Trac Hacker [<a href="http://trac.edgewall.org/" target="_blank">http://trac.edgewall.org/</a>]<br>
<br>
_______________________________________________<br>
pulseaudio-discuss mailing list<br>
<a href="mailto:pulseaudio-discuss@mail.0pointer.de" target="_blank">pulseaudio-discuss@mail.0pointer.de</a><br>
<a href="https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss" target="_blank">https://tango.0pointer.de/mailman/listinfo/pulseaudio-discuss</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>&quot;A little rudeness and disrespect can elevate a meaningless interaction to a battle of wills and add drama to an otherwise dull day.&quot; - Calven<br>