File: external_metro.h

package info (click to toggle)
jackd2 1.9.21~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,748 kB
  • sloc: cpp: 50,925; ansic: 30,986; python: 12,573; sh: 228; makefile: 31
file content (70 lines) | stat: -rw-r--r-- 1,815 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 Copyright (C) 2001 Paul Davis
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public License
 along with this program; if not, write to the Free Software 
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

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

#ifndef __external_metro__
#define __external_metro__

#ifdef __cplusplus
extern "C"
{
#endif

#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <math.h>
#include <getopt.h>
#include <string.h>
#include <jack/jack.h>
#include <jack/transport.h>

    typedef jack_default_audio_sample_t sample_t;

    /*!
    \brief A class to test external clients
    */

    struct ExternalMetro {

        jack_client_t *client;
        jack_port_t *input_port;
        jack_port_t *output_port;

        unsigned long sr;
        int freq;
        int bpm;
        jack_nframes_t tone_length, wave_length;
        sample_t *wave;
        double *amp;
        long offset ;

        ExternalMetro(int freq, double max_amp, int dur_arg, int bpm, const char* client_name = "metro");
        virtual ~ExternalMetro();

        static int process_audio (jack_nframes_t nframes, void* arg);
        static void shutdown (void* arg);
    };

#ifdef __cplusplus
}
#endif

#endif