Changeset 1274e9f for ext/jackio.h


Ignore:
Timestamp:
Sep 25, 2009, 5:17:19 AM (15 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
58779e3
Parents:
e4d0f8f
Message:

ext/jackio.{c,h}: update copyright and license, run though indent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ext/jackio.h

    re4d0f8f r1274e9f  
    11/*
    2    Copyright (C) 2003 Paul Brossier
     2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
    33
    4    This program is free software; you can redistribute it and/or modify
    5    it under the terms of the GNU General Public License as published by
    6    the Free Software Foundation; either version 2 of the License, or
    7    (at your option) any later version.
     4  This file is part of aubio.
    85
    9    This program is distributed in the hope that it will be useful,
    10    but WITHOUT ANY WARRANTY; without even the implied warranty of
    11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12    GNU General Public License for more details.
     6  aubio is free software: you can redistribute it and/or modify
     7  it under the terms of the GNU General Public License as published by
     8  the Free Software Foundation, either version 3 of the License, or
     9  (at your option) any later version.
    1310
    14    You should have received a copy of the GNU General Public License
    15    along with this program; if not, write to the Free Software
    16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     11  aubio is distributed in the hope that it will be useful,
     12  but WITHOUT ANY WARRANTY; without even the implied warranty of
     13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14  GNU General Public License for more details.
     15
     16  You should have received a copy of the GNU General Public License
     17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
    1718
    1819*/
     
    2930
    3031#ifdef __cplusplus
    31 extern "C" {
     32extern "C"
     33{
    3234#endif
    3335
     
    3537typedef struct _aubio_jack_t aubio_jack_t;
    3638/** jack process function */
    37 typedef int (*aubio_process_func_t)(smpl_t **input,
    38     smpl_t **output, int nframes);
     39typedef int (*aubio_process_func_t) (smpl_t ** input,
     40    smpl_t ** output, int nframes);
    3941
    4042/** jack device creation function */
    41 aubio_jack_t * new_aubio_jack (uint_t inchannels, uint_t outchannels,
     43aubio_jack_t *new_aubio_jack (uint_t inchannels, uint_t outchannels,
    4244    aubio_process_func_t callback);
    4345/** activate jack client (run jackprocess function) */
    44 uint_t aubio_jack_activate(aubio_jack_t *jack_setup);
     46uint_t aubio_jack_activate (aubio_jack_t * jack_setup);
    4547/** close and delete jack client */
    46 void aubio_jack_close(aubio_jack_t *jack_setup);
     48void aubio_jack_close (aubio_jack_t * jack_setup);
    4749
    4850#ifdef __cplusplus
     
    5052#endif
    5153
    52 #endif /* JACKIO_H */
     54#endif                          /* JACKIO_H */
Note: See TracChangeset for help on using the changeset viewer.