On 12/09, Stéphane Letz wrote:
>
> Here: https://github.com/grame-cncm/faustlive/releases
>
> Feedback welcome !

Well, the only architecture/ files I play with from time to time are
plot.cpp and pa-gtk.cpp. Both were broken a long ago, this probably
means that nobody else uses them ;)

pa-gtk.cpp can't be compiled without

        --- a/architecture/pa-gtk.cpp
        +++ b/architecture/pa-gtk.cpp
        @@ -65,7 +65,7 @@
         /*******************BEGIN ARCHITECTURE SECTION (part 
2/2)***************/
         
         mydsp          DSP;
        -list<GUI*>     GUI::fGuiList;
        +std::list<GUI*>        GUI::fGuiList;
         ztimedmap GUI::gTimedZoneMap;
         
         
//-------------------------------------------------------------------------

plot.cpp can only work if outputs(process) == 1, so I added a stupid "fix"

        --- a/architecture/plot.cpp
        +++ b/architecture/plot.cpp
        @@ -104,6 +104,7 @@ int main(int argc, char* argv[])
                 DSP.compute(kFrames, 0, chan.buffers());
                 for (int i = 0; i < kFrames; i++) {
                     for (int c = 0; c < nouts; c++) {
        +if (c) cout << "\t\t";
                         cout << chan.buffers()[c][i];
                     }
                     cout << endl;
        @@ -114,6 +115,7 @@ int main(int argc, char* argv[])
             DSP.compute(nbsamples, 0, chan.buffers());
             for (int i = 0; i < nbsamples; i++) {
                 for (int c = 0; c < nouts; c++) {
        +if (c) cout << "\t\t";
                     cout << chan.buffers()[c][i];
                 }
                 cout << endl;

Oh, and I just realized I am replying to the wrong email, but I have already
removed another one ("Faust 2.20.2 pre-release to test").

Oleg.



_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to