Browse Source

More cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2354 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
19d8d9834c
9 changed files with 120 additions and 6 deletions
  1. +19
    -1
      example-clients/alias.c
  2. +0
    -1
      example-clients/capture_client.c
  3. +18
    -0
      example-clients/echo.cpp
  4. +19
    -1
      example-clients/freeverb.cpp
  5. +0
    -2
      example-clients/internal_metro.h
  6. +16
    -0
      example-clients/ipload.c
  7. +16
    -0
      example-clients/ipunload.c
  8. +16
    -1
      example-clients/monitor_client.c
  9. +16
    -0
      example-clients/showtime.c

+ 19
- 1
example-clients/alias.c View File

@@ -1,10 +1,28 @@
/*
Copyright (C) 2008
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <getopt.h> #include <getopt.h>
//#include <config.h>
#include <jack/jack.h> #include <jack/jack.h>
//#include <config.h>


char * my_name; char * my_name;




+ 0
- 1
example-clients/capture_client.c View File

@@ -18,7 +18,6 @@


* 2002/08/23 - modify for libsndfile 1.0.0 <andy@alsaplayer.org> * 2002/08/23 - modify for libsndfile 1.0.0 <andy@alsaplayer.org>
* 2003/05/26 - use ringbuffers - joq * 2003/05/26 - use ringbuffers - joq
*/ */


#include <stdio.h> #include <stdio.h>


+ 18
- 0
example-clients/echo.cpp View File

@@ -1,3 +1,21 @@
/*
Copyright (C) 2008 Grame
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/* link with */ /* link with */
#include <math.h> #include <math.h>
#include <stdlib.h> #include <stdlib.h>


+ 19
- 1
example-clients/freeverb.cpp View File

@@ -1,3 +1,21 @@
/*
Copyright (C) 2008 Grame
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/* link with */ /* link with */
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
@@ -11,7 +29,7 @@
#include <string> #include <string>
#include <map> #include <map>
#include <iostream> #include <iostream>
#include <jack/jack.h>
#include <jack/jack.h>


#include <windows.h> #include <windows.h>




+ 0
- 2
example-clients/internal_metro.h View File

@@ -14,8 +14,6 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

$Id: internal_metro.h,v 1.2.2.1 2006/06/20 14:44:00 letz Exp $
*/ */


#ifndef __internal_metro__ #ifndef __internal_metro__


+ 16
- 0
example-clients/ipload.c View File

@@ -1,3 +1,19 @@
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>


+ 16
- 0
example-clients/ipunload.c View File

@@ -1,3 +1,19 @@
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>


+ 16
- 1
example-clients/monitor_client.c View File

@@ -1,3 +1,19 @@
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>
@@ -10,7 +26,6 @@


int int
main (int argc, char *argv[]) main (int argc, char *argv[])

{ {
jack_client_t *client; jack_client_t *client;
char *my_name = strrchr(argv[0], '/'); char *my_name = strrchr(argv[0], '/');


+ 16
- 0
example-clients/showtime.c View File

@@ -1,3 +1,19 @@
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>


Loading…
Cancel
Save