<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div dir="auto">
<div dir="auto"><font face="sans-serif">Thanks for the reply I can try to answer to yours objections</font></div>
<div dir="auto"><br>
</div>
<div><span style="font-family: sans-serif;">>we need to review the DSP</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">part, and not just the integration part. It would help if you provide,</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">in the form of comments in the source code, some references where the</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">math comes from. </span></div>
<div dir="auto"><br>
</div>
<div dir="auto">My equalizer is my thesis and math model comes from about 70 pages of calculations. It is not possible to add them as source comments. In my thesis I have inserted and explained only relevant result, and to do only this I've spent about 40 pages. </div>
<div dir="auto">All math is formally demonstraded so there are not bug in the math model, maybe in implementation at least (but I have done and I will do a lot of tests). </div>
<div dir="auto">Not to brag but I've to say that I've compared the filtered sound of my equalizer with a lot of others free and commercial sw equalizers and I've not found better, in particular about selectivity of the bands, often equalizers mix the nearest
 bands, not mine (or at least much less than the other).</div>
<div dir="auto">If you want I can share my thesis, it's in Italian but I think that a translator can do the rest to make it understandable.</div>
<div dir="auto"><br>
</div>
<div dir="auto"><span style="font-family: sans-serif;">> Also, I think it would make sense to use a struct of 10</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">well-named floats instead of eqp->c.</span><br>
</div>
<div dir="auto"><span style="font-family: sans-serif;"><br>
</span></div>
<div dir="auto"><font face="sans-serif">Without read the thesis or my calculations it is very hard to understand the role of struct variables, for example "c" are coefficients of the "cut boost" filter, "b" and "a" are standard names for the IIR coefficients,
 X is the standard name (especially in system theory) for the state, and so on but also if I use more explicative names, from the source, will be hard to understand how it works.</font></div>
<div dir="auto"><font face="sans-serif"><br>
</font></div>
<div dir="auto">> <span style="font-family: sans-serif;">rewind callback is implemented</span></div>
<span style="font-family: sans-serif;">incorrectly. The real problem is - nobody implements it correctly</span>
<div dir="auto"><font face="sans-serif"><br>
</font></div>
<div dir="auto"><font face="sans-serif">It is true, now I do nothing to manage rewind, but it is not a very bad thing. I had already though to and how manage it correctly, I can revert exactly the filter state "X" storing the buffer. But I think that is not
 a priority issue and can be performed in future versions.</font></div>
<div dir="auto"><br>
</div>
<div dir="auto">> <span style="font-family: sans-serif;">The reason is that, by accepting this module, we are implicitly taking</span></div>
<span style="font-family: sans-serif;">the responsibility to support it inside the tree. And, you are the</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">best person to support it</span>
<div dir="auto"><br>
</div>
<div dir="auto">Until I die I'm here, I can help you with the math model but how I've write few lines ago the math model is formally demonstrated there are not reason to change it. Yes, it is possible to do some implementation changes, for example I've also
 a math model that is the same equalizer but parametric that is also interesting, but increase a lot the code complexity and the GUI complexity.<br>
</div>
<div dir="auto"><br>
</div>
<div dir="auto"><span style="font-family: sans-serif;">> A better alternative, in my opinion, would be to create a LADSPA</span><br style="font-family: sans-serif;">
<span style="font-family: sans-serif;">plugin instead</span><br>
</div>
<div dir="auto"><span style="font-family: sans-serif;"><br>
</span></div>
<div dir="auto">Yes, I can also implement a LADSPA plugin, but PA needs a new equalizer, I've found a lot of discussions about the deprecation of the current equalizer, I tried it and read its source and in my honest opinion it is a very lower level than mine,
 also for CPU time as well as sound quality.</div>
<div dir="auto">Me and a lot of GNU/Linux users need a good and professional equalizer solution. My equalizer module is suitable, can be configured to normal desktop user (eg 10 bands) or to professional users, with 32 bands or more and can also respect sound
 equalizers standard from "american national standards institute".</div>
<div dir="auto"><br>
</div>
<div dir="auto">I don't want to boast but I've worked on the DSP part for a long time and I've read and improved a lot of paper to realize the math model. You can try it if you want, I would like to have your feedback.</div>
<div dir="auto"><br>
</div>
<div dir="auto">Thanks for the time, if you have any other doubts I'm happy to reply.</div>
<div dir="auto"><br>
</div>
<div dir="auto">Andrea993</div>
<div dir="auto"><br>
</div>
<div dir="auto">
<div dir="auto">
<div class="gmail_extra" dir="auto">
<div class="gmail_quote">Il 04 nov 2018 20:14, "Alexander E. Patrakov" <patrakov@gmail.com> ha scritto:<br type="attribution">
<blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<p dir="ltr">Andrea A <Andrea69x@hotmail.it>:<br>
><br>
> I'm writing a new equalizer module for PA,<br>
> https://github.com/andrea993/audioeqpro/blob/master/pulsemodule/module-eqpro-sink.c<br>
> I've almost done but I need some information from developer about how to proceed.</p>
<p dir="ltr">Thanks for attempting a contribution. I have attempted to answer your<br>
questions regarding the integration, please read below. However, see<br>
the end of this email for the biggest reason why I am against<br>
accepting this module or any future form of it (but my "no" holds very<br>
little weight, so feel free to ignore it).</p>
<p dir="ltr">However, in order for the module to be accepted (barring the big<br>
objection at the bottom of this email), we need to review the DSP<br>
part, and not just the integration part. It would help if you provide,<br>
in the form of comments in the source code, some references where the<br>
math comes from. And use more descriptive variable names, such as K -><br>
extra_gain. Also, I think it would make sense to use a struct of 10<br>
well-named floats instead of eqp->c.</p>
<p dir="ltr">> First of all, I see that current equalizer module manages "autoloaded" have I to manage it? What it does exactly? Old equalizer check "autoloaded" state in a callback "may_move_to", what is it? Have I to implement this callback and manage "autoloaded"
 like the current equalizer module?</p>
<p dir="ltr">It is set by module_filter_apply. The intended effect is to prevent<br>
moving the output of the equalizer to a different sink - i.e. if it<br>
was autoloaded for "Built-in Audio Analog Stereo" then you cannot move<br>
it to "HDMI Digital Stereo" using pavucontrol. See<br>
module-virtual-surround-sink.c for known-good usage. Although, I don't<br>
know any user of module_filter_apply.</p>
<p dir="ltr">Regarding the may_move_to callback, it is called when a user tries to<br>
move the equalizer output to a different sink. Please at least prevent<br>
creating a loop, i.e. moving the output to the equalizer itself.</p>
<p dir="ltr">> After the "autoloaded" management I can send the equalizer as a patch, however I've some questions about how to add my equalizer GUI to the PA branch. Should the GUI remains an external program or the GUI will be inserted to the mainline sources?
 In the second scenario how the GUI should be inserted? Which is the correct directory in the sources tree and what about the GUI makefile and the GUI installation directory?</p>
<p dir="ltr">PulseAudio currently does not depend on any GUI toolkit (well, except<br>
the old equalizer GUI). Personally, I am fine with this GUI (or maybe<br>
two GUIs - one for GNOME and MATE and XFCE, one for KDE) being in<br>
external repositories.</p>
<p dir="ltr">> The equalizer needs the messages patches from George Chini<br>
> https://patchwork.freedesktop.org/series/41390/<br>
> Have I to write this information as a patch comment or other?</p>
<p dir="ltr">Patch comment.</p>
<p dir="ltr">> I would like to add some configuration files to my module, for example to load and store equalizer preset, is there a PA specific file format (and directory to store file) to do this?</p>
<p dir="ltr">There are database files in ~/.config/pulse. There are multiple<br>
backends supported, see the --with-database=... configure argument.<br>
The abstraction layer is in src/pulsecore/database.h. Not sure if this<br>
is suitable for your needs.</p>
<p dir="ltr">> Execuse me for the wall of questions and thanks in advance.</p>
<p dir="ltr">You are welcome.</p>
<p dir="ltr">Anyway, just a small nitpick: the rewind callback is implemented<br>
incorrectly. The real problem is - nobody implements it correctly,<br>
especially because the comment in the template module-virtual-sink.c<br>
suggest doing such a stupid thing as resetting the filter. And, at<br>
least for the case of a resampler, users other than me do notice the<br>
imperfection, see https://bugs.freedesktop.org/show_bug.cgi?id=50113 .<br>
There are two solutions that I would accept as "proper". 1 - store the<br>
history of your input and/or state, restore it when asked to rewind. 2<br>
- do not pretend to support rewinds (but in this case, please limit<br>
the latency to something like 20-30 ms, so hat PulseAudio reacts<br>
quickly to the new streams). In the name of simplicity, and because<br>
the power-saving argument behind the original rewind operation does<br>
not hold if there is non-trivial processing, I would prefer option 2.</p>
<p dir="ltr">Big warning: I have not tested the module.</p>
<p dir="ltr">And here at the bottom of the email, let me explain why I think<br>
keeping this module outside of PulseAudio, in a different form, may be<br>
a better idea.</p>
<p dir="ltr">The reason is that, by accepting this module, we are implicitly taking<br>
the responsibility to support it inside the tree. And, you are the<br>
best person to support it. So there is an additional (avoidable!)<br>
latency between the time when you develop improvements and the time<br>
when users see them: namely, the time for someone else to understand<br>
and review your code, for PulseAudio team to make a release, and for<br>
distributions to package it.</p>
<p dir="ltr">A better alternative, in my opinion, would be to create a LADSPA<br>
plugin instead. PulseAudio already has module-lasdpa-sink since ages<br>
(even with D-Bus interface to change parameters at runtime), so your<br>
filter will be available also to all users of old PulseAudio versions.<br>
It will be also available to users of pure ALSA-based setup, if they<br>
still exist. You can publish improvements any time you want, without<br>
needing any potentially slow review from PulseAudio maintainers (but<br>
feel free to contact me privately if you do need a review), and your<br>
module will be quick to compile, because it is separated from the rest<br>
of PulseAudio. You can then publish a GUI application that loads the<br>
module into PulseAudio and then controls its filter via D-Bus. And you<br>
don't need to care about rewinds and may_move_to and all other<br>
pulseaudio-specific boilerplate. Sounds like a win-win situation.<br>
Could you please investigate this approach?</p>
<p dir="ltr">Thanks again for attempting to replace the current equalizer with<br>
something better.</p>
<p dir="ltr">-- <br>
Alexander E. Patrakov<br>
_______________________________________________<br>
pulseaudio-discuss mailing list<br>
pulseaudio-discuss@lists.freedesktop.org<br>
https://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss<br>
</p>
</blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</body>
</html>