<div dir="ltr"><div><div>Are there any comments regarding this particular patch, or do the same comments regarding the LibVLC patch apply here as well?<br><br></div>Regards,<br><br></div>Ron Wright<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Aug 7, 2015 at 11:50 AM, Ronald Wright <span dir="ltr"><<a href="mailto:logiconcepts819@gmail.com" target="_blank">logiconcepts819@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This is a follow-up from 2010 to make the compressor load before any other<br>
module, including the equalizer.  In this manner, only unfiltered audio will be<br>
compressed, and any other filter in the effects chain will manipulate the<br>
compressed audio.<br>
---<br>
 src/audio_output/common.c | 3 ++-<br>
 1 file changed, 2 insertions(+), 1 deletion(-)<br>
<br>
diff --git a/src/audio_output/common.c b/src/audio_output/common.c<br>
index 3de1f6a..17693bb 100644<br>
--- a/src/audio_output/common.c<br>
+++ b/src/audio_output/common.c<br>
@@ -521,7 +521,8 @@ static int FilterOrder( const char *psz_name )<br>
         const char psz_name[10];<br>
         int        i_order;<br>
     } filter[] = {<br>
-        { "equalizer",  0 },<br>
+        { "compressor", 0 },<br>
+        { "equalizer",  1 },<br>
     };<br>
     for( unsigned i = 0; i < ARRAY_SIZE(filter); i++ )<br>
     {<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.9.1<br>
<br>
</font></span></blockquote></div><br></div>