annotate libinterp/dldfcn/audiodevinfo.cc @ 21055:5e00ed38a58b

maint: Replace if/error/else paradigm with just if/error. * __ilu__.cc, data.cc, file-io.cc, graphics.cc, graphics.in.h, ls-mat5.cc, lu.cc, octave-link.cc, regexp.cc, schur.cc, spparms.cc, sub2ind.cc, syscalls.cc, toplev.cc, variables.cc, xpow.cc, audiodevinfo.cc, ccolamd.cc, ov-builtin.cc, ov-classdef.cc, ov-intx.h, ov-lazy-idx.cc, ov-mex-fcn.cc, op-int.h, lex.ll, oct-parse.in.yy, pt-binop.cc, pt-cbinop.cc, pt-const.cc, pt-decl.h, pt-fcn-handle.cc, pt-unop.cc, CollocWt.cc: Replace if/error/else paradigm with just if/error.
author Rik <rik@octave.org>
date Wed, 13 Jan 2016 11:02:22 -0800
parents 6eff66fb8a02
children a1529d24beff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19500
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
1 /*
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
2
19697
4197fc428c7d maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents: 19674
diff changeset
3 Copyright (C) 2013-2015 Vytautas JanĨauskas
19500
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
4
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
5 This file is part of Octave.
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
6
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
8 under the terms of the GNU General Public License as published by the
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
10 option) any later version.
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
11
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
15 for more details.
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
16
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
17 You should have received a copy of the GNU General Public License
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
18 along with Octave; see the file COPYING. If not, see
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
19 <http://www.gnu.org/licenses/>.
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
20
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
21 */
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
22
19501
1f551d169db2 Include config.h in audio project source files
Mike Miller <mtmiller@ieee.org>
parents: 19500
diff changeset
23 #ifdef HAVE_CONFIG_H
1f551d169db2 Include config.h in audio project source files
Mike Miller <mtmiller@ieee.org>
parents: 19500
diff changeset
24 #include <config.h>
1f551d169db2 Include config.h in audio project source files
Mike Miller <mtmiller@ieee.org>
parents: 19500
diff changeset
25 #endif
1f551d169db2 Include config.h in audio project source files
Mike Miller <mtmiller@ieee.org>
parents: 19500
diff changeset
26
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
27 // <cstdint> requires c++11
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
28 #include <stdint.h>
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
29
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
30 #include <string>
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
31 #include <vector>
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
32
19556
d7057df2968e use existing function to determine endianness in audiodevinfo.cc
John W. Eaton <jwe@octave.org>
parents: 19555
diff changeset
33 #include "mach-info.h"
d7057df2968e use existing function to determine endianness in audiodevinfo.cc
John W. Eaton <jwe@octave.org>
parents: 19555
diff changeset
34
19511
19f75d156ffe don't include oct.h in Octave source files
John W. Eaton <jwe@octave.org>
parents: 19510
diff changeset
35 #include "defun-dld.h"
19f75d156ffe don't include oct.h in Octave source files
John W. Eaton <jwe@octave.org>
parents: 19510
diff changeset
36 #include "error.h"
19f75d156ffe don't include oct.h in Octave source files
John W. Eaton <jwe@octave.org>
parents: 19510
diff changeset
37 #include "gripes.h"
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
38 #include "oct-locbuf.h"
20940
48b2ad5ee801 maint: Rename oct-obj.[cc|h] to ovl.[cc|h] for clarity.
Rik <rik@octave.org>
parents: 20939
diff changeset
39 #include "ovl.h"
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
40 #include "ov.h"
19511
19f75d156ffe don't include oct.h in Octave source files
John W. Eaton <jwe@octave.org>
parents: 19510
diff changeset
41 #include "ov-int32.h"
19472
c2031ad6dbe7 Fix octave header includes in audiodevinfo
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19469
diff changeset
42 #include "ov-struct.h"
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
43 #include "parse.h"
19674
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
44 #include "unwind-prot.h"
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
45
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
46 #if defined (HAVE_PORTAUDIO)
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
47
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
48 #include <portaudio.h>
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
49
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
50 PaSampleFormat
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
51 bits_to_format (int bits)
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
52 {
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
53 if (bits == 8)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
54 return paInt8;
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
55 else if (bits == 16)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
56 return paInt16;
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
57 else if (bits == 24)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
58 return paInt24;
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
59 else if (bits == 32)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
60 return paInt32;
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
61 else if (bits == -1)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
62 return paFloat32;
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
63 else
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
64 return 0;
19473
2e174b5e7703 Fix audiodevinfo, audioinfo, audioread and audiowrite build process
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19472
diff changeset
65 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
66
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
67 #endif
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
68
20946
6eff66fb8a02 style fixes for comments
John W. Eaton <jwe@octave.org>
parents: 20940
diff changeset
69 #define NO_PORTAUDIO_MSG \
6eff66fb8a02 style fixes for comments
John W. Eaton <jwe@octave.org>
parents: 20940
diff changeset
70 error ("portaudio not found on your system and thus audio functionality is not present"); \
6eff66fb8a02 style fixes for comments
John W. Eaton <jwe@octave.org>
parents: 20940
diff changeset
71 (void) args; /* silence compiler warning "unused parameter" */
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
72
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
73 DEFUN_DLD (audiodevinfo, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
74 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
75 @deftypefn {} {@var{devinfo} =} audiodevinfo ()\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
76 \n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
77 @deftypefnx {} {@var{devs} =} audiodevinfo (@var{io})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
78 @deftypefnx {} {@var{name} =} audiodevinfo (@var{io}, @var{id})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
79 @deftypefnx {} {@var{id} =} audiodevinfo (@var{io}, @var{name})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
80 @deftypefnx {} {@var{id} =} audiodevinfo (@var{io}, @var{rate}, @var{bits}, @var{chans})\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
81 \n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
82 @deftypefnx {} {@var{supports} =} audiodevinfo (@var{io}, @var{id}, @var{rate}, @var{bits}, @var{chans})\n\
19498
0ac6a4e7369b change docstrings in audio defundld cc files to work with new texinfo
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19483
diff changeset
83 \n\
20163
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
84 Return a structure describing the available audio input and output devices.\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
85 \n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
86 The @var{devinfo} structure has two fields @qcode{\"input\"} and\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
87 @qcode{\"output\"}. The value of each field is a structure array with fields\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
88 @qcode{\"Name\"}, @nospell{\"DriverVersion\"} and @qcode{\"ID\"} describing\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
89 an audio device.\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
90 \n\
19516
fc85d9026bb6 doc fixes for audio functions
John W. Eaton <jwe@octave.org>
parents: 19515
diff changeset
91 If the optional argument @var{io} is 1, return information about input\n\
fc85d9026bb6 doc fixes for audio functions
John W. Eaton <jwe@octave.org>
parents: 19515
diff changeset
92 devices only. If it is 0, return information about output devices only.\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
93 \n\
19516
fc85d9026bb6 doc fixes for audio functions
John W. Eaton <jwe@octave.org>
parents: 19515
diff changeset
94 If the optional argument @var{id} is provided, return information about\n\
20163
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
95 the corresponding device.\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
96 \n\
19516
fc85d9026bb6 doc fixes for audio functions
John W. Eaton <jwe@octave.org>
parents: 19515
diff changeset
97 If the optional argument @var{name} is provided, return the id of the\n\
fc85d9026bb6 doc fixes for audio functions
John W. Eaton <jwe@octave.org>
parents: 19515
diff changeset
98 named device.\n\
19498
0ac6a4e7369b change docstrings in audio defundld cc files to work with new texinfo
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19483
diff changeset
99 \n\
20163
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
100 Given a sampling rate, bits per sample, and number of channels for an input\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
101 or output device, return the ID of the first device that supports playback\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
102 or recording using the specified parameters.\n\
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
103 \n\
20163
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
104 If also given a device ID, return true if the device supports playback or\n\
075a5e2e1ba5 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19973
diff changeset
105 recording using those parameters.\n\
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
106 @end deftypefn")
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
107 {
19483
abde714a4f88 let audiodevinfo be built even when PortAudio is not present
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19473
diff changeset
108 #ifdef HAVE_PORTAUDIO
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
109
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
110 int nargin = args.length ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
111
20939
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
112 if (nargin > 5)
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
113 print_usage ();
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
114
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
115 octave_scalar_map devinfo;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
116 octave_value_list input;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
117 octave_value_list output;
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
118
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
119 PaError err = Pa_Initialize ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
120
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
121 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
122 error ("audiodevinfo: PortAudio initialization failed");
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
123
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
124 int num_devices = Pa_GetDeviceCount ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
125
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
126 if (num_devices < 0)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
127 error ("audiodevinfo: no audio device found");
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
128
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
129 octave_idx_type numinput = 0, numoutput = 0;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
130 for (int i = 0; i < num_devices; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
131 {
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
132 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (i);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
133
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
134 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
135 {
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
136 warning ("Octave:invalid-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
137 "invalid audio device ID = %d", i);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
138 continue;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
139 }
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
140
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
141 if (device_info->maxInputChannels != 0)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
142 numinput++;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
143
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
144 if (device_info->maxOutputChannels != 0)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
145 numoutput++;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
146 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
147
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
148 Cell input_name (dim_vector (1, numinput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
149 Cell input_driver_version (dim_vector (1, numinput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
150 Cell input_id (dim_vector (1, numinput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
151 Cell output_name (dim_vector (1, numoutput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
152 Cell output_driver_version (dim_vector (1, numoutput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
153 Cell output_id (dim_vector (1, numoutput));
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
154
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
155 octave_idx_type idx_i = 0, idx_o = 0;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
156 for (int i = 0; i < num_devices; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
157 {
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
158 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (i);
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
159
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
160 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
161 {
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
162 warning ("Octave:invalid-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
163 "invalid audio device ID = %d", i);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
164 continue;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
165 }
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
166
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
167 const PaHostApiInfo *api_info = Pa_GetHostApiInfo (device_info->hostApi);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
168
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
169 const char *driver = api_info ? api_info->name : "";
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
170
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
171 char name[128];
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
172 sprintf (name, "%s (%s)", device_info->name, driver);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
173
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
174 if (device_info->maxInputChannels != 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
175 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
176 input_name(idx_i) = name;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
177 input_driver_version(idx_i) = driver;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
178 input_id(idx_i) = i;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
179 idx_i++;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
180 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
181
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
182 if (device_info->maxOutputChannels != 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
183 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
184 output_name(idx_o) = name;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
185 output_driver_version(idx_o) = driver;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
186 output_id(idx_o) = i;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
187 idx_o++;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
188 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
189 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
190
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
191 octave_map inputdev, outputdev;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
192 inputdev.setfield ("Name", input_name);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
193 inputdev.setfield ("DriverVersion", input_driver_version);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
194 inputdev.setfield ("ID", input_id);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
195 outputdev.setfield ("Name", output_name);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
196 outputdev.setfield ("DriverVersion", output_driver_version);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
197 outputdev.setfield ("ID", output_id);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
198 devinfo.setfield ("input", inputdev);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
199 devinfo.setfield ("output", outputdev);
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
200
20939
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
201 octave_value retval;
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
202
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
203 // Return information about input and output audio devices and
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
204 // their properties.
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
205 if (nargin == 0)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
206 retval = devinfo;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
207 // Return the number of input or output devices
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
208 else if (nargin == 1)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
209 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
210 if (args(0).int_value () == 0)
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
211 retval = numoutput;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
212 else if (args(0).int_value () == 1)
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
213 retval = numinput;
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
214 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
215 error ("audiodevinfo: please specify 0 for output and 1 for input devices");
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
216 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
217 // Return device name when given id or id when given device name.
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
218 else if (nargin == 2)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
219 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
220 bool found = false;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
221 int outin = args(0).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
222 if (args(1).is_string ())
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
223 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
224 if (outin == 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
225 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
226 for (int i = 0; i < numoutput; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
227 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
228 if (output_name(i).string_value () == args(1).string_value ())
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
229 {
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
230 retval = output_id(i);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
231 found = true;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
232 break;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
233 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
234 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
235 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
236 else if (outin == 1)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
237 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
238 for (int i = 0; i < numinput; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
239 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
240 if (input_name(i).string_value () == args(1).string_value ())
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
241 {
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
242 retval = input_id(i);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
243 found = true;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
244 break;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
245 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
246 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
247 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
248 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
249 error ("audiodevinfo: please specify 0 for output and 1 for input devices");
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
250 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
251 else
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
252 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
253 if (outin == 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
254 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
255 for (int i = 0; i < numoutput; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
256 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
257 if (output_id(i).int_value () == args(1).int_value ())
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
258 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
259 retval = output_name(i);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
260 found = true;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
261 break;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
262 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
263 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
264 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
265 else if (outin == 1)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
266 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
267 for (int i = 0; i < numinput; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
268 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
269 if (input_id(i).int_value () == args(1).int_value ())
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
270 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
271 retval = input_name(i);
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
272 found = true;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
273 break;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
274 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
275 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
276 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
277 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
278 error ("audiodevinfo: please specify 0 for output and 1 for input devices");
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
279 }
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
280
19973
7aaf756b1532 use "!", not "not"
John W. Eaton <jwe@octave.org>
parents: 19861
diff changeset
281 if (! found)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
282 error ("audiodevinfo: no device meeting the specified criteria found");
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
283 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
284 else if (nargin == 3)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
285 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
286 // FIXME: what was supposed to happen here?
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
287 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
288 // Return the id of the first device meeting specified criteria.
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
289 else if (nargin == 4)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
290 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
291 int io = args(0).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
292 int rate = args(1).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
293 int bits = args(2).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
294 int chans = args(3).int_value ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
295
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
296 for (int i = 0; i < num_devices; i++)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
297 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
298 PaStreamParameters stream_parameters;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
299 stream_parameters.device = i;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
300 stream_parameters.channelCount = chans;
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
301 PaSampleFormat format = bits_to_format (bits);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
302
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
303 if (format != 0)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
304 stream_parameters.sampleFormat = format;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
305 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
306 error ("audiodevinfo: no such bits per sample format");
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
307
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
308 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (i);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
309
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
310 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
311 {
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
312 warning ("Octave:invalid-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
313 "invalid audio device ID = %d", i);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
314 continue;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
315 }
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
316
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
317 stream_parameters.suggestedLatency
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
318 = device_info->defaultLowInputLatency;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
319
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
320 stream_parameters.hostApiSpecificStreamInfo = 0;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
321
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
322 if (io == 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
323 {
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
324 if (device_info->maxOutputChannels < chans)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
325 continue;
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
326
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
327 err = Pa_IsFormatSupported (0, &stream_parameters, rate);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
328
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
329 if (err == paFormatIsSupported)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
330 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
331 retval = i;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
332 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
333 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
334 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
335 else if (io == 1)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
336 {
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
337 if (device_info->maxInputChannels < chans)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
338 continue;
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
339
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
340 err = Pa_IsFormatSupported (&stream_parameters, 0, rate);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
341 if (err == paFormatIsSupported)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
342 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
343 retval = i;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
344 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
345 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
346 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
347 }
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
348 retval = -1;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
349 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
350 // Check if given device supports specified playback or recording modes.
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
351 else if (nargin == 5)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
352 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
353 int io = args(0).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
354 int id = args(1).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
355 int rate = args(2).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
356 int bits = args(3).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
357 int chans = args(4).int_value ();
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
358 PaStreamParameters stream_parameters;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
359 stream_parameters.device = id;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
360 stream_parameters.channelCount = chans;
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
361 PaSampleFormat format = bits_to_format (bits);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
362 if (format != 0)
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
363 stream_parameters.sampleFormat = format;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
364 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
365 error ("audiodevinfo: no such bits per sample format");
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
366
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
367 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (id);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
368
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
369 if (! device_info)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
370 error ("audiodevinfo: invalid audio device ID = %d", id);
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
371
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
372 stream_parameters.suggestedLatency
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
373 = device_info->defaultLowInputLatency;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
374
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
375 stream_parameters.hostApiSpecificStreamInfo = 0;
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
376 if (io == 0)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
377 {
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
378 if (device_info->maxOutputChannels < chans)
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
379 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
380 retval = 0;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
381 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
382 }
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
383 err = Pa_IsFormatSupported (0, &stream_parameters, rate);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
384 if (err == paFormatIsSupported)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
385 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
386 retval = 1;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
387 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
388 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
389 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
390 else if (io == 1)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
391 {
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
392 if (device_info->maxInputChannels < chans)
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
393 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
394 retval = 0;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
395 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
396 }
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
397 err = Pa_IsFormatSupported (&stream_parameters, 0, rate);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
398 if (err == paFormatIsSupported)
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
399 {
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
400 retval = 1;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
401 return retval;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
402 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
403 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
404 else
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
405 error ("audiodevinfo: please specify 0 for output and 1 for input devices");
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
406
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
407 retval = 0;
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
408 }
20939
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
409
b17fda023ca6 maint: Use new C++ archetype in more files.
Rik <rik@octave.org>
parents: 20868
diff changeset
410 return retval;
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
411
19483
abde714a4f88 let audiodevinfo be built even when PortAudio is not present
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19473
diff changeset
412 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
413 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
414 (void) args; //silence compiler warning "unused parameter"
19483
abde714a4f88 let audiodevinfo be built even when PortAudio is not present
Vytautas Jančauskas <unaudio@gmail.com>
parents: 19473
diff changeset
415 #endif
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
416 }
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
417
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
418 /*
19528
4f615cd9a68d Use "testif HAVE_PORTAUDIO" for new audio function tests
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19526
diff changeset
419 %!testif HAVE_PORTAUDIO
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
420 %! devinfo = audiodevinfo;
19509
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
421 %! assert (rows (devinfo.input), 1);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
422 %! assert (rows (devinfo.output), 1);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
423
19528
4f615cd9a68d Use "testif HAVE_PORTAUDIO" for new audio function tests
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19526
diff changeset
424 %!testif HAVE_PORTAUDIO
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
425 %! devinfo = audiodevinfo;
19509
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
426 %! nout = audiodevinfo (0);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
427 %! nin = audiodevinfo (1);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
428 %! assert (columns (devinfo.output), nout);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
429 %! assert (columns (devinfo.input), nin);
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
430
19528
4f615cd9a68d Use "testif HAVE_PORTAUDIO" for new audio function tests
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19526
diff changeset
431 %!testif HAVE_PORTAUDIO
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
432 %! devinfo = audiodevinfo;
19509
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
433 %! nout = audiodevinfo (0);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
434 %! nin = audiodevinfo (1);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
435 %! for i = 1:nout,
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
436 %! assert (devinfo.output(i).Name, audiodevinfo (0, devinfo.output(i).ID))
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
437 %! endfor
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
438 %! for i=1:nin,
19509
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
439 %! assert (devinfo.input(i).Name, audiodevinfo (1, devinfo.input(i).ID))
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
440 %! endfor
19469
ea5c156aa804 audiodevinfo.cc: new file
Vytautas Jančauskas <unaudio@gmail.com>
parents:
diff changeset
441
19528
4f615cd9a68d Use "testif HAVE_PORTAUDIO" for new audio function tests
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19526
diff changeset
442 %!testif HAVE_PORTAUDIO
19503
36a26a131209 Apply Octave coding style to audio project additions
Mike Miller <mtmiller@ieee.org>
parents: 19501
diff changeset
443 %! devinfo = audiodevinfo;
19509
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
444 %! nout = audiodevinfo (0);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
445 %! nin = audiodevinfo (1);
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
446 %! for i = 1:nout,
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
447 %! assert (devinfo.output(i).ID, audiodevinfo (0, devinfo.output(i).Name))
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
448 %! endfor
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
449 %! for i = 1:nin,
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
450 %! assert (devinfo.input(i).ID, audiodevinfo (1, devinfo.input(i).Name))
2a16dac2176f fix audioplayer tests
John W. Eaton <jwe@octave.org>
parents: 19505
diff changeset
451 %! endfor
19500
8bb399569393 Add Octave copyright header block to audio project files
Mike Miller <mtmiller@ieee.org>
parents: 19498
diff changeset
452 */
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
453
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
454 #ifdef HAVE_PORTAUDIO
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
455
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
456 enum audio_type { TYPE_INT8, TYPE_UINT8, TYPE_UINT16, TYPE_DOUBLE };
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
457
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
458 class audioplayer : public octave_base_value
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
459 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
460 public:
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
461 audioplayer (void);
19570
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
462 ~audioplayer (void);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
463
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
464 // Overloaded base functions
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
465 double player_value (void) const { return 0; }
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
466 virtual double scalar_value (bool = false) const { return 0; }
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
467 void print (std::ostream& os, bool pr_as_read_syntax = false) const;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
468 void print_raw (std::ostream& os, bool pr_as_read_syntax) const;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
469
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
470 // Properties
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
471 bool is_constant (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
472 bool is_defined (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
473 bool print_as_scalar (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
474
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
475 void init (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
476 void init_fn (void);
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
477 void set_y (const octave_value& y);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
478 void set_y (octave_function *fn);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
479 void set_y (std::string fn);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
480 Matrix& get_y (void);
19547
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
481 RowVector get_left (void) const;
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
482 RowVector get_right (void) const;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
483 void set_fs (int fs);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
484 int get_fs (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
485 void set_nbits (int nbits);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
486 int get_nbits (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
487 void set_id (int id);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
488 int get_id (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
489 int get_channels (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
490 audio_type get_type (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
491
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
492 void set_sample_number (unsigned int sample);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
493 unsigned int get_sample_number (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
494 unsigned int get_total_samples (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
495 void set_end_sample (unsigned int sample);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
496 unsigned int get_end_sample (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
497 void reset_end_sample (void);
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
498 void set_tag (const charMatrix& tag);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
499 charMatrix get_tag (void);
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
500 void set_userdata (const octave_value& userdata);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
501 octave_value get_userdata (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
502 PaStream *get_stream (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
503
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
504 void playblocking (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
505 void play (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
506 void pause (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
507 void resume (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
508 void stop (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
509 bool isplaying (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
510
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
511 octave_function *octave_callback_function;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
512
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
513 private:
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
514 int id;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
515 int fs;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
516 int nbits;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
517 int channels;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
518 unsigned int sample_number;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
519 unsigned int end_sample;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
520 charMatrix tag;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
521 Matrix y;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
522 octave_value userdata;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
523 RowVector left;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
524 RowVector right;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
525 PaStream *stream;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
526 PaStreamParameters output_parameters;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
527 audio_type type;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
528
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
529 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
530 };
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
531
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
532 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (audioplayer, "audioplayer", "audioplayer");
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
533
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
534 static int
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
535 octave_play_callback (const void *, void *output, unsigned long frames,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
536 const PaStreamCallbackTimeInfo *,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
537 PaStreamCallbackFlags, void *data)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
538 {
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
539 audioplayer *player = static_cast<audioplayer *> (data);
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
540
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
541 if (! player)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
542 error ("audio player callback function called without player");
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
543
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
544 octave_value_list retval = feval (player->octave_callback_function,
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
545 ovl (static_cast<double> (frames)), 1);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
546
20555
f90c8372b7ba eliminate many more simple uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20232
diff changeset
547 if (retval.length () < 2)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
548 error ("audio player callback function failed");
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
549
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
550 const Matrix sound = retval(0).matrix_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
551 int return_status = retval(1).int_value ();
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
552
20555
f90c8372b7ba eliminate many more simple uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20232
diff changeset
553 if (frames - sound.rows () != 0 || sound.columns () < 1
f90c8372b7ba eliminate many more simple uses of error_state
John W. Eaton <jwe@octave.org>
parents: 20232
diff changeset
554 || sound.columns () > 2)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
555 error ("audio player callback function failed");
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
556
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
557 // Don't multiply the audio data by scale_factor here. Although it
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
558 // does move the operation outside of the loops below, it also causes
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
559 // a second copy of the data array to be made.
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
560
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
561 const ColumnVector sound_l = sound.column (0);
19574
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
562 const ColumnVector sound_r = (sound.columns () == 1
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
563 ? sound_l : sound.column (1));
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
564
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
565 const double *p_l = sound_l.data ();
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
566 const double *p_r = sound_r.data ();
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
567
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
568 switch (player->get_nbits ())
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
569 {
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
570 case 8:
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
571 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
572 static double scale_factor = std::pow (2.0, 7) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
573
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
574 int8_t *buffer = static_cast<int8_t *> (output);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
575
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
576 for (unsigned long i = 0; i < frames; i++)
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
577 {
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
578 buffer[2*i] = p_l[i] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
579 buffer[2*i+1] = p_r[i] * scale_factor;
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
580 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
581 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
582 break;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
583
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
584 case 16:
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
585 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
586 static double scale_factor = std::pow (2.0, 15) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
587
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
588 int16_t *buffer = static_cast<int16_t *> (output);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
589
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
590 for (unsigned long i = 0; i < frames; i++)
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
591 {
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
592 buffer[2*i] = p_l[i] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
593 buffer[2*i+1] = p_r[i] * scale_factor;
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
594 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
595 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
596 break;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
597
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
598 case 24:
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
599 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
600 static double scale_factor = std::pow (2.0, 23) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
601
19556
d7057df2968e use existing function to determine endianness in audiodevinfo.cc
John W. Eaton <jwe@octave.org>
parents: 19555
diff changeset
602 static int big_endian = oct_mach_info::words_big_endian ();
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
603
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
604 uint8_t *buffer = static_cast<uint8_t *> (output);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
605
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
606 for (unsigned long i = 0; i < frames; i++)
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
607 {
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
608 int32_t sample_l = p_l[i];
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
609 int32_t sample_r = p_r[i];
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
610
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
611 sample_l &= 0x00ffffff;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
612 sample_r &= 0x00ffffff;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
613
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
614 // FIXME: Would a mask work better?
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
615 uint8_t *_sample_l = reinterpret_cast<uint8_t *> (&sample_l);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
616 uint8_t *_sample_r = reinterpret_cast<uint8_t *> (&sample_r);
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
617
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
618 unsigned long offset = i * 6;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
619
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
620 buffer[offset+0] = _sample_l[0+big_endian] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
621 buffer[offset+1] = _sample_l[1+big_endian] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
622 buffer[offset+2] = _sample_l[2+big_endian] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
623
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
624 buffer[offset+3] = _sample_r[0+big_endian] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
625 buffer[offset+4] = _sample_r[1+big_endian] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
626 buffer[offset+5] = _sample_r[2+big_endian] * scale_factor;
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
627 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
628 }
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
629 break;
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
630
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
631 default:
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
632 error ("invalid player bit depth in callback function");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
633 }
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
634
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
635 return return_status;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
636 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
637
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
638 static int
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
639 portaudio_play_callback (const void *, void *output, unsigned long frames,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
640 const PaStreamCallbackTimeInfo*,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
641 PaStreamCallbackFlags, void *data)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
642 {
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
643 audioplayer *player = static_cast<audioplayer *> (data);
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
644
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
645 if (! player)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
646 error ("audio player callback function called without player");
19551
e4bce89532bc improve error checking and efficiency of octave audio callback function
John W. Eaton <jwe@octave.org>
parents: 19550
diff changeset
647
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
648 // Don't multiply the audio data by scale_factor here. Although it
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
649 // would move the operation outside of the loops below, it also causes
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
650 // a second copy of the *entire* data array to be made when only a
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
651 // small portion (buffer_size elements) is usually needed for this
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
652 // callback.
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
653
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
654 const RowVector sound_l = player->get_left ();
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
655 const RowVector sound_r = player->get_right ();
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
656
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
657 const double *pl = sound_l.data ();
19565
810cfb00b72b portaudio_play_callback: Fix stereo playback (bug #43965)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19561
diff changeset
658 const double *pr = sound_r.data ();
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
659
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
660 if (player->get_type () == TYPE_DOUBLE)
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
661 {
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
662 switch (player->get_nbits ())
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
663 {
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
664 case 8:
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
665 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
666 static double scale_factor = std::pow (2.0, 7) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
667
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
668 int8_t *buffer = static_cast<int8_t *> (output);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
669
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
670 for (unsigned long j = 0; j < frames; j++)
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
671 {
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
672 unsigned int sample_number = player->get_sample_number ();
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
673
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
674 if (sample_number >= player->get_end_sample ())
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
675 return paComplete;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
676
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
677 unsigned long offset = j * 2;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
678
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
679 buffer[offset+0] = pl[sample_number] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
680 buffer[offset+1] = pr[sample_number] * scale_factor;
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
681
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
682 player->set_sample_number (sample_number + 1);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
683 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
684 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
685 break;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
686
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
687 case 16:
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
688 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
689 static double scale_factor = std::pow (2.0, 15) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
690
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
691 int16_t *buffer = static_cast<int16_t *> (output);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
692
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
693 for (unsigned long j = 0; j < frames; j++)
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
694 {
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
695 unsigned int sample_number = player->get_sample_number ();
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
696
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
697 if (sample_number >= player->get_end_sample ())
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
698 return paComplete;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
699
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
700 unsigned long offset = j * 2;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
701
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
702 buffer[offset+0] = pl[sample_number] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
703 buffer[offset+1] = pr[sample_number] * scale_factor;
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
704
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
705 player->set_sample_number (sample_number + 1);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
706 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
707 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
708 break;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
709
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
710 case 24:
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
711 {
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
712 static double scale_factor = std::pow (2.0, 23) - 1.0;
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
713
19556
d7057df2968e use existing function to determine endianness in audiodevinfo.cc
John W. Eaton <jwe@octave.org>
parents: 19555
diff changeset
714 static int big_endian = oct_mach_info::words_big_endian ();
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
715
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
716 uint8_t *buffer = static_cast<uint8_t *> (output);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
717
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
718 for (unsigned long j = 0; j < frames; j++)
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
719 {
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
720 unsigned int sample_number = player->get_sample_number ();
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
721
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
722 if (sample_number >= player->get_end_sample ())
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
723 return paComplete;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
724
19555
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
725 int32_t sample_l = pl[sample_number] * scale_factor;
9bd2f0a07c95 improve performance of audio callback functions
John W. Eaton <jwe@octave.org>
parents: 19552
diff changeset
726 int32_t sample_r = pr[sample_number] * scale_factor;
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
727
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
728 sample_l &= 0x00ffffff;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
729 sample_r &= 0x00ffffff;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
730
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
731 // FIXME: Would a mask work better?
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
732 uint8_t *_sample_l = reinterpret_cast<uint8_t *> (&sample_l);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
733 uint8_t *_sample_r = reinterpret_cast<uint8_t *> (&sample_r);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
734
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
735 unsigned long offset = j * 6;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
736
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
737 buffer[offset+0] = _sample_l[0+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
738 buffer[offset+1] = _sample_l[1+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
739 buffer[offset+2] = _sample_l[2+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
740
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
741 buffer[offset+3] = _sample_r[0+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
742 buffer[offset+4] = _sample_r[1+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
743 buffer[offset+5] = _sample_r[2+big_endian];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
744
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
745 player->set_sample_number (sample_number + 1);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
746 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
747 }
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
748 break;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
749
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
750 default:
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
751 error ("invalid player bit depth in callback function");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
752 }
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
753 }
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
754 else if (player->get_type () == TYPE_INT8)
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
755 {
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
756 int8_t *buffer = static_cast<int8_t *> (output);
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
757
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
758 for (unsigned long j = 0; j < frames; j++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
759 {
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
760 unsigned int sample_number = player->get_sample_number ();
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
761
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
762 if (sample_number >= player->get_end_sample ())
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
763 return paComplete;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
764
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
765 unsigned long offset = j * 2;
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
766
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
767 buffer[offset+0] = pl[sample_number];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
768 buffer[offset+1] = pr[sample_number];
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
769
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
770 player->set_sample_number (sample_number + 1);
19550
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
771 }
19543
5f313345912f avoid indexing before beginning of string
John W. Eaton <jwe@octave.org>
parents: 19528
diff changeset
772 }
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
773 else if (player->get_type () == TYPE_UINT8)
19550
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
774 {
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
775 uint8_t *buffer = static_cast<uint8_t *> (output);
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
776
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
777 for (unsigned long j = 0; j < frames; j++)
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
778 {
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
779 unsigned int sample_number = player->get_sample_number ();
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
780
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
781 if (sample_number >= player->get_end_sample ())
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
782 return paComplete;
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
783
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
784 unsigned long offset = j * 2;
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
785
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
786 buffer[offset+0] = pl[sample_number];
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
787 buffer[offset+1] = pr[sample_number];
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
788
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
789 player->set_sample_number (sample_number + 1);
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
790 }
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
791 }
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
792 else if (player->get_type () == TYPE_UINT16)
19550
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
793 {
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
794 int16_t *buffer = static_cast<int16_t *> (output);
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
795
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
796 for (unsigned long j = 0; j < frames; j++)
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
797 {
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
798 unsigned int sample_number = player->get_sample_number ();
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
799
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
800 if (sample_number >= player->get_end_sample ())
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
801 return paComplete;
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
802
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
803 unsigned long offset = j * 2;
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
804
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
805 buffer[offset+0] = pl[sample_number];
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
806 buffer[offset+1] = pr[sample_number];
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
807
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
808 player->set_sample_number (sample_number + 1);
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
809 }
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
810 }
19548
7c0e20def8e3 improve efficiency of portaudio callback function
John W. Eaton <jwe@octave.org>
parents: 19547
diff changeset
811
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
812 return paContinue;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
813 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
814
19674
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
815 static void
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
816 safe_audioplayer_stop (audioplayer *player)
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
817 {
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
818 player->stop ();
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
819 }
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
820
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
821 audioplayer::audioplayer (void)
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
822 : octave_callback_function (0),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
823 id (-1), fs (0), nbits (16), channels (0), sample_number (0),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
824 end_sample (-1), tag (""), y (), userdata (Matrix ()),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
825 left (), right (), stream (0), output_parameters (), type ()
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
826 { }
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
827
19570
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
828 audioplayer::~audioplayer (void)
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
829 {
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
830 if (isplaying ())
19570
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
831 {
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
832 warning ("Octave:audio-interrupt",
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
833 "interrupting playing audioplayer");
19570
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
834 stop ();
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
835 }
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
836 }
62ca016dbb2a audiodevinfo.cc: Stop playback in audioplayers destructor (bug ##43994)
Andreas Weber <andy.weber.aw@gmail.com>
parents: 19566
diff changeset
837
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
838 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
839 audioplayer::print (std::ostream& os, bool pr_as_read_syntax) const
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
840 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
841 print_raw (os, pr_as_read_syntax);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
842 newline (os);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
843 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
844
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
845 void
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
846 audioplayer::print_raw (std::ostream& os, bool) const
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
847 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
848 os << 0;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
849 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
850
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
851 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
852 audioplayer::init_fn (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
853 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
854 if (Pa_Initialize () != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
855 error ("audioplayer: initialization error!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
856
19566
c36c22808d11 * audiodevinfo.cc: one audio device must be available to play or record (bug #43988)
Stefan Mahr <dac922@gmx.de>
parents: 19565
diff changeset
857 if (Pa_GetDeviceCount () < 1)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
858 error ("audioplayer: no audio devices found or available!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
859
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
860 int device = get_id ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
861
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
862 if (device == -1)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
863 device = Pa_GetDefaultOutputDevice ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
864
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
865 output_parameters.device = device;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
866 output_parameters.channelCount = 2;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
867 output_parameters.sampleFormat = bits_to_format (get_nbits ());
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
868
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
869 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
870
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
871 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
872 warning ("Octave:invalid-default-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
873 "invalid default audio device ID = %d", device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
874
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
875 output_parameters.suggestedLatency
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
876 = device_info ? device_info->defaultHighOutputLatency : -1;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
877
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
878 output_parameters.hostApiSpecificStreamInfo = 0;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
879 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
880
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
881 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
882 audioplayer::init (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
883 {
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
884 // Both of these variables are unused. Should they be
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
885 // eliminated or is something not yet implemented?
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
886 //
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
887 // int channels = y.rows ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
888 // RowVector *sound_l = get_left ();
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
889
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
890 if (Pa_Initialize () != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
891 error ("audioplayer: initialization error!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
892
19566
c36c22808d11 * audiodevinfo.cc: one audio device must be available to play or record (bug #43988)
Stefan Mahr <dac922@gmx.de>
parents: 19565
diff changeset
893 if (Pa_GetDeviceCount () < 1)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
894 error ("audioplayer: no audio devices found or available!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
895
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
896 int device = get_id ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
897
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
898 if (device == -1)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
899 device = Pa_GetDefaultOutputDevice ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
900
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
901 output_parameters.device = device;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
902 output_parameters.channelCount = 2;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
903
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
904 if (type == TYPE_DOUBLE)
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
905 output_parameters.sampleFormat = bits_to_format (get_nbits ());
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
906 else if (type == TYPE_INT8)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
907 output_parameters.sampleFormat = paInt8;
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
908 else if (type == TYPE_UINT8)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
909 output_parameters.sampleFormat = paUInt8;
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
910 else if (type == TYPE_UINT16)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
911 output_parameters.sampleFormat = paInt16;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
912
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
913 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
914
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
915 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
916 warning ("Octave:invalid-default-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
917 "invalid default audio device ID = %d", device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
918
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
919 output_parameters.suggestedLatency
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
920 = device_info ? device_info->defaultHighOutputLatency : -1;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
921
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
922 output_parameters.hostApiSpecificStreamInfo = 0;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
923 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
924
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
925 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
926 audioplayer::set_y (const octave_value& y_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
927 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
928 if (y_arg.is_int8_type ())
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
929 type = TYPE_INT8;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
930 else if (y_arg.is_uint8_type ())
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
931 type = TYPE_UINT8;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
932 else if (y_arg.is_int16_type ())
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
933 type = TYPE_UINT16;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
934 else
19561
0d3e67f27d57 * audiodevinfo.cc: Avoid conflict with enum names.
John Donoghue <john.donoghue@ieee.org>
parents: 19560
diff changeset
935 type = TYPE_DOUBLE;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
936
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
937 y = y_arg.matrix_value ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
938
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
939 if (y.rows () > 2)
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
940 y = y.transpose ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
941
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
942 channels = y.rows ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
943 left = y.row (0);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
944
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
945 if (channels == 2)
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
946 right = y.row (1);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
947
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
948 reset_end_sample ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
949 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
950
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
951 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
952 audioplayer::set_y (octave_function *fn)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
953 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
954 octave_callback_function = fn;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
955 channels = 2;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
956 reset_end_sample ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
957 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
958
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
959 Matrix&
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
960 audioplayer::get_y (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
961 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
962 return y;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
963 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
964
19547
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
965 RowVector
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
966 audioplayer::get_left (void) const
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
967 {
19547
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
968 return left;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
969 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
970
19547
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
971 RowVector
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
972 audioplayer::get_right (void) const
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
973 {
19547
c5b8a91baec6 avoid unnecessary use of pointer in audio code
John W. Eaton <jwe@octave.org>
parents: 19544
diff changeset
974 return channels == 1 ? left : right;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
975 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
976
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
977 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
978 audioplayer::set_fs (int fs_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
979 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
980 fs = fs_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
981 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
982
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
983 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
984 audioplayer::get_fs (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
985 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
986 return fs;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
987 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
988
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
989 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
990 audioplayer::set_nbits (int nbits_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
991 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
992 nbits = nbits_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
993 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
994
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
995 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
996 audioplayer::get_nbits (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
997 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
998 return nbits;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
999 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1000
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1001 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1002 audioplayer::set_id (int id_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1003 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1004 id = id_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1005 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1006
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1007 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1008 audioplayer::get_id (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1009 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1010 return id;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1011 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1012
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1013 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1014 audioplayer::get_channels (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1015 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1016 return channels;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1017 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1018
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1019 audio_type
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1020 audioplayer::get_type (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1021 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1022 return type;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1023 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1024
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1025 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1026 audioplayer::set_sample_number (unsigned int sample_number_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1027 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1028 sample_number = sample_number_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1029 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1030
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1031 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1032 audioplayer::get_sample_number (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1033 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1034 return sample_number;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1035 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1036
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1037 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1038 audioplayer::get_total_samples (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1039 {
20232
a9574e3c6e9e Deprecate Array::length() and Sparse::length() in favour of ::numel().
Carnë Draug <carandraug@octave.org>
parents: 20163
diff changeset
1040 return left.numel ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1041 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1042
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1043 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1044 audioplayer::set_end_sample (unsigned int end_sample_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1045 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1046 end_sample = end_sample_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1047 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1048
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1049 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1050 audioplayer::get_end_sample (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1051 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1052 return end_sample;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1053 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1054
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1055 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1056 audioplayer::reset_end_sample (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1057 {
20232
a9574e3c6e9e Deprecate Array::length() and Sparse::length() in favour of ::numel().
Carnë Draug <carandraug@octave.org>
parents: 20163
diff changeset
1058 set_end_sample (left.numel ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1059 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1060
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1061 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1062 audioplayer::set_tag (const charMatrix& tag_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1063 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1064 tag = tag_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1065 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1066
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1067 charMatrix
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1068 audioplayer::get_tag (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1069 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1070 return tag;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1071 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1072
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1073 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1074 audioplayer::set_userdata (const octave_value& userdata_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1075 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1076 userdata = userdata_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1077 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1078
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1079 octave_value
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1080 audioplayer::get_userdata (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1081 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1082 return userdata;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1083 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1084
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1085 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1086 audioplayer::playblocking (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1087 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1088 if (get_stream ())
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1089 stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1090
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1091 const unsigned int buffer_size = get_fs () / 20;
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1092 OCTAVE_LOCAL_BUFFER (uint32_t, buffer, buffer_size * 2);
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1093
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1094 PaError err;
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1095 err = Pa_OpenStream (&stream, 0, &(output_parameters), get_fs (),
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1096 buffer_size, paClipOff, 0, 0);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1097 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1098 error ("audioplayer: unable to open audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1099
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1100 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1101 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1102 error ("audioplayer: unable to start start audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1103
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1104 unsigned int start, end;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1105 start = get_sample_number ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1106 end = get_end_sample ();
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1107
19674
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1108 unwind_protect frame;
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1109
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1110 frame.add_fcn (safe_audioplayer_stop, this);
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1111
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1112 for (unsigned int i = start; i < end; i += buffer_size)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1113 {
19672
b5a8f0f31664 Handle interrupt in audio blocking play and record (bug #44142)
Mike Miller <mtmiller@ieee.org>
parents: 19671
diff changeset
1114 OCTAVE_QUIT;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1115 if (octave_callback_function != 0)
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1116 octave_play_callback (0, buffer, buffer_size, 0, 0, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1117 else
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1118 portaudio_play_callback (0, buffer, buffer_size, 0, 0, this);
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1119
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1120 err = Pa_WriteStream (stream, buffer, buffer_size);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1121 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1122 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1123
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1124 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1125 audioplayer::play (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1126 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1127 if (get_stream ())
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1128 stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1129
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1130 const unsigned int buffer_size = get_fs () / 20;
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1131
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1132 PaError err;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1133 if (octave_callback_function != 0)
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1134 err = Pa_OpenStream (&stream, 0, &(output_parameters),
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1135 get_fs (), buffer_size, paClipOff,
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1136 octave_play_callback, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1137 else
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1138 err = Pa_OpenStream (&stream, 0, &(output_parameters),
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1139 get_fs (), buffer_size, paClipOff,
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1140 portaudio_play_callback, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1141
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1142 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1143 error ("audioplayer: failed to open audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1144
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1145 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1146 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1147 error ("audioplayer: failed to start audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1148 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1149
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1150 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1151 audioplayer::pause (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1152 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1153 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1154 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1155
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1156 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1157 err = Pa_StopStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1158 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1159 error ("audiorecorder: failed to stop audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1160 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1161
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1162 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1163 audioplayer::resume (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1164 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1165 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1166 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1167
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1168 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1169 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1170 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1171 error ("audiorecorder: failed to start audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1172 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1173
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1174 PaStream *
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1175 audioplayer::get_stream (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1176 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1177 return stream;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1178 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1179
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1180 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1181 audioplayer::stop (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1182 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1183 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1184 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1185
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1186 PaError err;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1187 set_sample_number (0);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1188 reset_end_sample ();
19973
7aaf756b1532 use "!", not "not"
John W. Eaton <jwe@octave.org>
parents: 19861
diff changeset
1189 if (! Pa_IsStreamStopped (get_stream ()))
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1190 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1191 err = Pa_AbortStream (get_stream ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1192 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1193 error ("audioplayer: failed to stop audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1194 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1195
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1196 err = Pa_CloseStream (get_stream ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1197 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1198 error ("audioplayer: failed to close audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1199
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1200 stream = 0;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1201 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1202
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1203 bool
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1204 audioplayer::isplaying (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1205 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1206 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1207 return false;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1208
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1209 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1210 err = Pa_IsStreamActive (stream);
19515
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
1211 if (err != 0 && err != 1)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1212 error ("audiorecorder: checking stream activity status failed");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1213
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1214 return (err == 1);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1215 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1216
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1217 class audiorecorder : public octave_base_value
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1218 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1219 public:
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1220 audiorecorder (void);
19580
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1221 ~audiorecorder (void);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1222
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1223 // Overloaded base functions
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1224 double player_value (void) const { return 0; }
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1225 virtual double scalar_value (bool = false) const { return 0; }
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1226 void print (std::ostream& os, bool pr_as_read_syntax = false) const;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1227 void print_raw (std::ostream& os, bool pr_as_read_syntax) const;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1228
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1229 // Properties
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1230 bool is_constant (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1231 bool is_defined (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1232 bool print_as_scalar (void) const { return true; }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1233
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1234 void init (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1235 void set_fs (int fs);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1236 int get_fs (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1237 void set_nbits (int nbits);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1238 int get_nbits (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1239 void set_id (int id);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1240 int get_id (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1241 void set_channels (int channels);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1242 int get_channels (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1243 audio_type get_type (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1244
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1245 void set_sample_number (unsigned int sample);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1246 unsigned int get_sample_number (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1247 unsigned int get_total_samples (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1248 void set_end_sample (unsigned int sample);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1249 unsigned int get_end_sample (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1250 void reset_end_sample (void);
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1251 void set_tag (const charMatrix& tag);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1252 charMatrix get_tag (void);
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1253 void set_userdata (const octave_value& userdata);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1254 octave_value get_userdata (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1255 PaStream *get_stream (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1256
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1257 octave_value getaudiodata (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1258 audioplayer *getplayer (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1259 bool isrecording (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1260 audioplayer play (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1261 void record (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1262 void recordblocking (float seconds);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1263 void pause (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1264 void resume (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1265 void stop (void);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1266 void append (float sample_l, float sample_r);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1267
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1268 octave_function *octave_callback_function;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1269
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1270 private:
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1271 int id;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1272 int fs;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1273 int nbits;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1274 int channels;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1275 unsigned int sample_number;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1276 unsigned int end_sample;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1277 charMatrix tag;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1278 Matrix y;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1279 octave_value userdata;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1280 std::vector<float> left;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1281 std::vector<float> right;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1282 PaStream *stream;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1283 PaStreamParameters input_parameters;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1284 audio_type type;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1285
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1286 DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1287 };
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1288
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1289 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (audiorecorder, "audiorecorder", "audiorecorder");
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1290
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1291 static int
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1292 octave_record_callback (const void *input, void *, unsigned long frames,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1293 const PaStreamCallbackTimeInfo *,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1294 PaStreamCallbackFlags, void *data)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1295 {
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1296 audiorecorder *recorder = static_cast<audiorecorder *> (data);
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1297
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1298 if (! recorder)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1299 error ("audio recorder callback function called without player");
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1300
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1301 int channels = recorder->get_channels ();
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1302
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1303 Matrix sound (frames, 2);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1304 sound.resize (frames, 2);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1305
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1306 if (recorder->get_nbits () == 8)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1307 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1308 static double scale_factor = std::pow (2.0, 7) - 1.0;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1309
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1310 const int8_t *input8 = static_cast<const int8_t *> (input);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1311
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1312 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1313 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1314 float sample_l = input8[i*channels] / scale_factor;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1315 float sample_r = input8[i*channels + (channels - 1)] / scale_factor;
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
1316
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1317 sound(i,0) = sample_l;
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1318 sound(i,1) = sample_r;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1319 }
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1320 }
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1321 else if (recorder->get_nbits () == 16)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1322 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1323 static double scale_factor = std::pow (2.0, 15) - 1.0;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1324
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1325 const int16_t *input16 = static_cast<const int16_t *> (input);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1326
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1327 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1328 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1329 float sample_l = input16[i*channels] / scale_factor;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1330 float sample_r = input16[i*channels + (channels - 1)] / scale_factor;
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
1331
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1332 sound(i,0) = sample_l;
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1333 sound(i,1) = sample_r;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1334 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1335 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1336 else if (recorder->get_nbits () == 24)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1337 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1338 static double scale_factor = std::pow (2.0, 23);
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1339
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1340 // FIXME: Is there a better way?
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1341 const uint8_t *input24 = static_cast<const uint8_t *> (input);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1342
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1343 int32_t sample_l32 = 0, sample_r32 = 0;
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1344
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1345 uint8_t *sample_l = reinterpret_cast<uint8_t *> (&sample_l32);
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1346 uint8_t *sample_r = reinterpret_cast<uint8_t *> (&sample_r32);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1347
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1348 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1349 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1350 for (int j = 0; j < 3; j++)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1351 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1352 sample_l[j] = input24[i*channels*3 + j];
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1353 sample_r[j] = input24[i*channels*3 + (channels - 1)*3 + j];
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1354 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1355
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1356 if (sample_l32 & 0x00800000)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1357 sample_l32 |= 0xff000000;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1358
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1359 if (sample_r32 & 0x00800000)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1360 sample_r32 |= 0xff000000;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1361
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1362 sound(i,0) = sample_l32 / scale_factor;
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1363 sound(i,1) = sample_r32 / scale_factor;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1364 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1365 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1366
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1367 octave_value_list retval
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1368 = feval (recorder->octave_callback_function, ovl (sound), 1);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1369
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1370 return retval(0).int_value ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1371 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1372
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1373 static int
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1374 portaudio_record_callback (const void *input, void *, unsigned long frames,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1375 const PaStreamCallbackTimeInfo *,
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1376 PaStreamCallbackFlags, void *data)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1377 {
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1378 audiorecorder *recorder = static_cast<audiorecorder *> (data);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1379
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1380 if (! recorder)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1381 error ("audio recorder callback function called without player");
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1382
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1383 int channels = recorder->get_channels ();
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1384
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1385 if (recorder->get_nbits () == 8)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1386 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1387 static float scale_factor = std::pow (2.0f, 7) - 1.0f;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1388
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1389 const int8_t *input8 = static_cast<const int8_t *> (input);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1390
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1391 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1392 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1393 float sample_l = input8[i*channels] / scale_factor;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1394 float sample_r = input8[i*channels + (channels - 1)] / scale_factor;
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
1395
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1396 recorder->append (sample_l, sample_r);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1397 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1398 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1399 else if (recorder->get_nbits () == 16)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1400 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1401 static float scale_factor = std::pow (2.0f, 15) - 1.0f;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1402
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1403 const int16_t *input16 = static_cast<const int16_t *> (input);
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1404
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1405 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1406 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1407 float sample_l = input16[i*channels] / scale_factor;
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1408 float sample_r = input16[i*channels + (channels - 1)] / scale_factor;
19557
182abae666ae * audiodevinfo.cc: Explicitly use std::pow.
John W. Eaton <jwe@octave.org>
parents: 19556
diff changeset
1409
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1410 recorder->append (sample_l, sample_r);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1411 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1412 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1413 else if (recorder->get_nbits () == 24)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1414 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1415 static float scale_factor = std::pow (2.0f, 23);
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1416
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1417 // FIXME: Is there a better way?
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1418 const uint8_t *input24 = static_cast<const uint8_t *> (input);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1419
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1420 int32_t sample_l32 = 0, sample_r32 = 0;
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1421
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1422 uint8_t *sample_l = reinterpret_cast<uint8_t *> (&sample_l32);
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1423 uint8_t *sample_r = reinterpret_cast<uint8_t *> (&sample_r32);
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1424
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
1425 for (unsigned long i = 0; i < frames; i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1426 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1427 for (int j = 0; j < 3; j++)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1428 {
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1429 sample_l[j] = input24[i*channels*3 + j];
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1430 sample_r[j] = input24[i*channels*3 + (channels - 1)*3 + j];
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1431 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1432
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1433 if (sample_l32 & 0x00800000)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1434 sample_l32 |= 0xff000000;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1435
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1436 if (sample_r32 & 0x00800000)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1437 sample_r32 |= 0xff000000;
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1438
19558
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1439 recorder->append (sample_l32 / scale_factor,
0b068273340f style and other fixes for audiorecorder callback fucntions
John W. Eaton <jwe@octave.org>
parents: 19557
diff changeset
1440 sample_r32 / scale_factor);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1441 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1442 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1443
19673
cdf9c83b0e79 Correctly check for end of audio recording
Mike Miller <mtmiller@ieee.org>
parents: 19672
diff changeset
1444 if (recorder->get_sample_number () >= recorder->get_end_sample ())
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1445 return paComplete;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1446
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1447 return paContinue;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1448 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1449
19674
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1450 static void
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1451 safe_audiorecorder_stop (audiorecorder *recorder)
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1452 {
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1453 recorder->stop ();
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1454 }
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1455
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1456 audiorecorder::audiorecorder (void)
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1457 : octave_callback_function (0),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1458 id (-1), fs (44100), nbits (16), channels (2), sample_number (0),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1459 end_sample (-1), tag (""), y (), userdata (Matrix ()),
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1460 left (), right (), stream (0), input_parameters (), type ()
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1461 { }
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1462
19580
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1463 audiorecorder::~audiorecorder (void)
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1464 {
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1465 if (isrecording ())
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1466 {
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1467 warning ("Octave:audio-interrupt",
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1468 "interrupting recording audiorecorder");
19580
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1469 stop ();
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1470 }
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1471 }
478d35191196 maybe stop recorder in audio recorder destructor
John W. Eaton <jwe@octave.org>
parents: 19577
diff changeset
1472
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1473 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1474 audiorecorder::print (std::ostream& os, bool pr_as_read_syntax) const
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1475 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1476 print_raw (os, pr_as_read_syntax);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1477 newline (os);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1478 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1479
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1480 void
19512
a5eb03a7e2a5 eliminate unused variable and parameter warnings
John W. Eaton <jwe@octave.org>
parents: 19511
diff changeset
1481 audiorecorder::print_raw (std::ostream& os, bool) const
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1482 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1483 os << 0;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1484 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1485
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1486 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1487 audiorecorder::init (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1488 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1489 if (Pa_Initialize () != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1490 error ("audiorecorder: initialization error!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1491
19566
c36c22808d11 * audiodevinfo.cc: one audio device must be available to play or record (bug #43988)
Stefan Mahr <dac922@gmx.de>
parents: 19565
diff changeset
1492 if (Pa_GetDeviceCount () < 1)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1493 error ("audiorecorder: no audio devices found or available!");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1494
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1495 int device = get_id ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1496
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1497 if (device == -1)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1498 device = Pa_GetDefaultInputDevice ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1499
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1500 input_parameters.device = device;
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1501 input_parameters.channelCount = get_channels ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1502 input_parameters.sampleFormat = bits_to_format (get_nbits ());
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1503
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1504 const PaDeviceInfo *device_info = Pa_GetDeviceInfo (device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1505
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1506 if (! device_info)
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1507 warning ("Octave:invalid-default-audio-device",
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1508 "invalid default audio device ID = %d", device);
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1509
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1510 input_parameters.suggestedLatency
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1511 = device_info ? device_info->defaultHighInputLatency : -1;
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
1512
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1513 input_parameters.hostApiSpecificStreamInfo = 0;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1514 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1515
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1516 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1517 audiorecorder::set_fs (int fs_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1518 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1519 fs = fs_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1520 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1521
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1522 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1523 audiorecorder::get_fs (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1524 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1525 return fs;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1526 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1527
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1528 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1529 audiorecorder::set_nbits (int nbits_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1530 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1531 nbits = nbits_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1532 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1533
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1534 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1535 audiorecorder::get_nbits (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1536 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1537 return nbits;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1538 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1539
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1540 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1541 audiorecorder::set_id (int id_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1542 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1543 id = id_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1544 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1545
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1546 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1547 audiorecorder::get_id (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1548 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1549 return id;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1550 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1551
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1552 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1553 audiorecorder::set_channels (int channels_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1554 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1555 assert (channels_arg == 1 || channels_arg == 2);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1556 channels = channels_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1557 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1558
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1559 int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1560 audiorecorder::get_channels (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1561 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1562 return channels;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1563 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1564
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1565 audio_type
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1566 audiorecorder::get_type (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1567 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1568 return type;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1569 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1570
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1571 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1572 audiorecorder::set_sample_number (unsigned int sample_number_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1573 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1574 sample_number = sample_number_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1575 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1576
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1577 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1578 audiorecorder::get_sample_number (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1579 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1580 return sample_number;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1581 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1582
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1583 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1584 audiorecorder::get_total_samples (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1585 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1586 return left.size ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1587 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1588
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1589 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1590 audiorecorder::set_end_sample (unsigned int end_sample_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1591 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1592 end_sample = end_sample_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1593 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1594
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1595 unsigned int
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1596 audiorecorder::get_end_sample (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1597 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1598 return end_sample;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1599 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1600
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1601 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1602 audiorecorder::reset_end_sample (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1603 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1604 set_end_sample (left.size ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1605 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1606
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1607 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1608 audiorecorder::set_tag (const charMatrix& tag_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1609 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1610 tag = tag_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1611 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1612
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1613 charMatrix
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1614 audiorecorder::get_tag (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1615 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1616 return tag;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1617 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1618
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1619 void
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1620 audiorecorder::set_userdata (const octave_value& userdata_arg)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1621 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1622 userdata = userdata_arg;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1623 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1624
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1625 octave_value
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1626 audiorecorder::get_userdata (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1627 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1628 return userdata;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1629 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1630
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1631 octave_value
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1632 audiorecorder::getaudiodata (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1633 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1634 Matrix audio (2, left.size ());
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1635
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1636 for (unsigned int i = 0; i < left.size (); i++)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1637 {
19583
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1638 audio(0,i) = left[i];
6464cd19e0f4 * audiodevinfo.cc: Style fixes. Warning IDs.
John W. Eaton <jwe@octave.org>
parents: 19580
diff changeset
1639 audio(1,i) = right[i];
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1640 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1641
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1642 return audio;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1643 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1644
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1645 audioplayer *
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1646 audiorecorder::getplayer (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1647 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1648 audioplayer *player = new audioplayer ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1649
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1650 player->set_y (getaudiodata ());
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1651 player->set_fs (get_fs ());
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1652 player->set_nbits (get_nbits ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1653 player->init ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1654
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1655 return player;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1656 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1657
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1658 bool
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1659 audiorecorder::isrecording (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1660 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1661 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1662 return false;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1663
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1664 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1665 err = Pa_IsStreamActive (stream);
19515
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
1666 if (err != 0 && err != 1)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1667 error ("audiorecorder: checking stream activity status failed");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1668
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1669 return (err == 1);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1670 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1671
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1672 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1673 audiorecorder::record (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1674 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1675 if (get_stream ())
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1676 stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1677
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1678 left.clear ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1679 right.clear ();
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1680
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1681 const unsigned int buffer_size = get_fs () / 20;
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1682
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1683 PaError err;
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1684 if (octave_callback_function != 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1685 {
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1686 err = Pa_OpenStream (&stream, &(input_parameters), 0,
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1687 get_fs (), buffer_size, paClipOff,
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1688 octave_record_callback, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1689 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1690 else
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1691 {
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1692 err = Pa_OpenStream (&stream, &(input_parameters), 0,
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1693 get_fs (), buffer_size, paClipOff,
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1694 portaudio_record_callback, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1695 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1696 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1697 error ("audiorecorder: unable to open audio recording stream");
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1698
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1699 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1700 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1701 error ("audiorecorder: unable to start audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1702 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1703
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1704 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1705 audiorecorder::recordblocking (float seconds)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1706 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1707 if (get_stream ())
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1708 stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1709
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1710 left.clear ();
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1711 right.clear ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1712
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1713 const unsigned int buffer_size = get_fs () / 20;
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1714 OCTAVE_LOCAL_BUFFER (uint8_t, buffer, buffer_size * 2 * 3);
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1715
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1716 PaError err;
19518
572b9bd43e92 use 0 instead of NULL
John W. Eaton <jwe@octave.org>
parents: 19517
diff changeset
1717 err = Pa_OpenStream (&stream, &(input_parameters), 0,
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1718 get_fs (), buffer_size, paClipOff, 0, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1719 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1720 error ("audiorecorder: unable to open audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1721
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1722 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1723 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1724 error ("audiorecorder: unable to start audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1725
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1726 unsigned int frames = seconds * get_fs ();
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1727
19674
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1728 unwind_protect frame;
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1729
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1730 frame.add_fcn (safe_audiorecorder_stop, this);
b3363c531662 Stop audioplayer and audiorecorder when done or interrupted
Mike Miller <mtmiller@ieee.org>
parents: 19673
diff changeset
1731
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1732 for (unsigned int i = 0; i < frames; i += buffer_size)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1733 {
19672
b5a8f0f31664 Handle interrupt in audio blocking play and record (bug #44142)
Mike Miller <mtmiller@ieee.org>
parents: 19671
diff changeset
1734 OCTAVE_QUIT;
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1735 Pa_ReadStream (get_stream (), buffer, buffer_size);
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1736
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1737 if (octave_callback_function != 0)
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1738 octave_record_callback (buffer, 0, buffer_size, 0, 0, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1739 else
19671
322d0fe84a8c Make audio buffer size dependent on sample rate
Mike Miller <mtmiller@ieee.org>
parents: 19598
diff changeset
1740 portaudio_record_callback (buffer, 0, buffer_size, 0, 0, this);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1741 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1742 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1743
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1744 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1745 audiorecorder::pause (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1746 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1747 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1748 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1749
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1750 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1751 err = Pa_StopStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1752 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1753 error ("audiorecorder: unable to stop audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1754 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1755
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1756 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1757 audiorecorder::resume (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1758 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1759 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1760 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1761
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1762 PaError err;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1763 err = Pa_StartStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1764 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1765 error ("audiorecorder: unable to start audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1766 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1767
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1768 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1769 audiorecorder::stop (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1770 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1771 if (get_stream () == 0)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1772 return;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1773
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1774 PaError err;
19973
7aaf756b1532 use "!", not "not"
John W. Eaton <jwe@octave.org>
parents: 19861
diff changeset
1775 if (! Pa_IsStreamStopped (get_stream ()))
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1776 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1777 err = Pa_AbortStream (get_stream ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1778 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1779 error ("audioplayer: unable to stop audio playback stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1780 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1781
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1782 err = Pa_CloseStream (stream);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1783 if (err != paNoError)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1784 error ("audiorecorder: unable to close audio recording stream");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1785
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1786 set_sample_number (0);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1787 reset_end_sample ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1788 stream = 0;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1789 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1790
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1791 void
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1792 audiorecorder::append (float sample_l, float sample_r)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1793 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1794 left.push_back (sample_l);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1795 right.push_back (sample_r);
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1796 set_sample_number (get_sample_number () + 1);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1797 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1798
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1799 PaStream *
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1800 audiorecorder::get_stream (void)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1801 {
19517
22e2f11424b3 avoid more warnings in audio code
John W. Eaton <jwe@octave.org>
parents: 19516
diff changeset
1802 return stream;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1803 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1804
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1805 #endif
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1806
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1807 DEFUN_DLD (__recorder_audiorecorder__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1808 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1809 @deftypefn {} {@var{recorder} =} __recorder_audiorecorder__ (@var{fs}, @var{nbits}, @var{channels})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1810 @deftypefnx {} {@var{recorder} =} __recorder_audiorecorder__ (@var{fs}, @var{nbits}, @var{channels}, @var{id})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1811 @deftypefnx {} {@var{recorder} =} __recorder_audiorecorder__ (@var{fcn}, @dots{})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1812 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1813 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1814 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1815 octave_value retval;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1816
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1817 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1818 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1819 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1820
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1821 int nargin = args.length ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1822
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1823 audiorecorder* recorder = new audiorecorder ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1824
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1825 if (nargin > 0)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1826 {
19574
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
1827 bool is_function = (args(0).is_string () || args(0).is_function_handle ()
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
1828 || args(0).is_inline_function ());
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1829
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1830 if (is_function)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
1831 error ("audioplayer: callbacks not yet implemented");
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1832 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1833
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1834 if (nargin >= 3)
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1835 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1836 recorder->set_fs (args(0).int_value ());
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1837 recorder->set_nbits (args(1).int_value ());
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1838 recorder->set_channels (args(2).int_value ());
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1839 }
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1840
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1841 if (nargin == 4)
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1842 {
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1843 recorder->set_id (args(3).int_value ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1844 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1845
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1846 recorder->init ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1847 retval = recorder;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1848
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1849 #endif
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
1850
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1851 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1852 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1853
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1854 #ifdef HAVE_PORTAUDIO
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1855
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1856 static audiorecorder *
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1857 get_recorder (const octave_value& ov)
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1858 {
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1859 const octave_base_value& rep = ov.get_rep ();
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1860
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1861 octave_base_value *ncrep = const_cast<octave_base_value *> (&rep);
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1862
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1863 audiorecorder *rec = dynamic_cast<audiorecorder *> (ncrep);
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1864 if (! rec)
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1865 error ("audiodevinfo.cc get_recorder: dynamic_cast to audiorecorder failed");
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1866
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1867 return rec;
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1868 }
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
1869
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1870 #endif
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
1871
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1872 DEFUN_DLD (__recorder_getaudiodata__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1873 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1874 @deftypefn {} {@var{data}} __recorder_getaudiodata__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1875 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1876 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1877 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1878 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1879 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1880 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1881 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1882 retval = get_recorder (args(0))->getaudiodata ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1883 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1884 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1885 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1886
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1887 DEFUN_DLD (__recorder_get_channels__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1888 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1889 @deftypefn {} {@var{n} =} __recorder_get_channels__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1890 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1891 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1892 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1893 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1894 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1895 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1896 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1897 retval = get_recorder (args(0))->get_channels ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1898 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1899 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1900 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1901
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1902 DEFUN_DLD (__recorder_get_fs__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1903 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1904 @deftypefn {} {@var{fs} =} __recorder_get_fs__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1905 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1906 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1907 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1908 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1909 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1910 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1911 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1912 retval = get_recorder (args(0))->get_fs ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1913 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1914 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1915 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1916
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1917 DEFUN_DLD (__recorder_get_id__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1918 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1919 @deftypefn {} {@var{id} =} __recorder_get_id__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1920 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1921 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1922 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1923 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1924 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1925 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1926 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1927 retval = get_recorder (args(0))->get_id ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1928 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1929 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1930 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1931
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1932 DEFUN_DLD (__recorder_get_nbits__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1933 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1934 @deftypefn {} {@var{nbits} =} __recorder_get_nbits__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1935 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1936 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1937 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1938 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1939 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1940 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1941 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1942 retval = get_recorder (args(0))->get_nbits ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1943 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1944 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1945 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1946
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1947 DEFUN_DLD (__recorder_get_sample_number__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1948 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1949 @deftypefn {} {@var{n} =} __recorder_get_sample_number__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1950 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1951 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1952 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1953 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1954 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1955 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1956 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1957 retval = get_recorder (args(0))->get_sample_number ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1958 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1959 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1960 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1961
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1962 DEFUN_DLD (__recorder_get_tag__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1963 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1964 @deftypefn {} {@var{tag} =} __recorder_get_tag__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1965 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1966 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1967 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1968 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1969 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1970 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1971 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1972 retval = get_recorder (args(0))->get_tag ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1973 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1974 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1975 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1976
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1977 DEFUN_DLD (__recorder_get_total_samples__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1978 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1979 @deftypefn {} {@var{n} =} __recorder_get_total_samples__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1980 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1981 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1982 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1983 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1984 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1985 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1986 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1987 retval = get_recorder (args(0))->get_total_samples ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1988 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1989 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1990 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1991
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1992 DEFUN_DLD (__recorder_get_userdata__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
1993 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
1994 @deftypefn {} {@var{data} =} __recorder_get_userdata__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1995 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1996 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1997 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
1998 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
1999 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2000 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2001 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2002 retval = get_recorder (args(0))->get_userdata ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2003 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2004 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2005 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2006
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2007 DEFUN_DLD (__recorder_isrecording__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2008 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2009 @deftypefn {} {} __recorder_isrecording__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2010 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2011 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2012 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2013 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2014 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2015 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2016 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2017 retval = get_recorder (args(0))->isrecording ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2018 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2019 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2020 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2021
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2022 DEFUN_DLD (__recorder_pause__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2023 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2024 @deftypefn {} {} __recorder_pause__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2025 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2026 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2027 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2028 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2029 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2030 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2031 get_recorder (args(0))->pause ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2032 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2033 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2034 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2035
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2036 DEFUN_DLD (__recorder_recordblocking__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2037 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2038 @deftypefn {} {} __recorder_recordblocking__ (@var{recorder}, @var{seconds})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2039 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2040 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2041 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2042 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2043 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2044 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2045 float seconds = args(1).float_value ();
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2046 get_recorder (args(0))->recordblocking (seconds);
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2047 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2048 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2049 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2050
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2051 DEFUN_DLD (__recorder_record__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2052 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2053 @deftypefn {} {} __recorder_record__ (@var{recorder})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2054 @deftypefnx {} {} __recorder_record__ (@var{recorder}, @var{seconds})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2055 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2056 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2057 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2058 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2059 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2060 #else
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2061 audiorecorder *recorder = get_recorder (args(0));
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2062
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2063 if (args.length () == 2)
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2064 recorder->set_end_sample (args(1).int_value () * recorder->get_fs ());
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2065
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2066 recorder->record ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2067 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2068 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2069 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2070
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2071 DEFUN_DLD (__recorder_resume__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2072 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2073 @deftypefn {} {} __recorder_resume__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2074 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2075 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2076 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2077 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2078 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2079 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2080 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2081 get_recorder (args(0))->resume ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2082 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2083 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2084 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2085
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2086 DEFUN_DLD (__recorder_set_fs__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2087 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2088 @deftypefn {} {} __recorder_set_fs__ (@var{recorder}, @var{fs})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2089 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2090 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2091 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2092 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2093 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2094 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2095 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2096 get_recorder (args(0))->set_fs (args(1).int_value ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2097 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2098 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2099 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2100
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2101 DEFUN_DLD (__recorder_set_tag__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2102 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2103 @deftypefn {} {} __recorder_set_tag__ (@var{recorder}, @var{tag})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2104 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2105 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2106 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2107 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2108 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2109 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2110 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2111 get_recorder (args(0))->set_tag (args(1).char_matrix_value ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2112 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2113 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2114 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2115
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2116 DEFUN_DLD (__recorder_set_userdata__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2117 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2118 @deftypefn {} {} __recorder_set_userdata__ (@var{recorder}, @var{data})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2119 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2120 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2121 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2122 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2123 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2124 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2125 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2126 get_recorder (args(0))->set_userdata (args(1));
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2127 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2128 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2129 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2130
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2131 DEFUN_DLD (__recorder_stop__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2132 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2133 @deftypefn {} {} __recorder_stop__ (@var{recorder})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2134 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2135 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2136 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2137 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2138 NO_PORTAUDIO_MSG
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2139 #else
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2140 if (args.length () == 1)
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2141 get_recorder (args(0))->stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2142 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2143 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2144 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2145
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2146 DEFUN_DLD (__player_audioplayer__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2147 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2148 @deftypefn {} {@var{player} =} __player_audioplayer__ (@var{y}, @var{fs})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2149 @deftypefnx {} {@var{player} =} __player_audioplayer__ (@var{y}, @var{fs}, @var{nbits})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2150 @deftypefnx {} {@var{player} =} __player_audioplayer__ (@var{y}, @var{fs}, @var{nbits}, @var{id})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2151 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2152 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2153 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2154 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2155 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2156 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2157 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2158
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2159 int nargin = args.length ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2160
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2161 audioplayer* recorder = new audioplayer ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2162
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
2163 if (! recorder)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2164 error ("__player_audioplayer__: Couldn't instantiate new audioplayer");
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
2165
19574
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
2166 bool is_function = (args(0).is_string () || args(0).is_function_handle ()
47d778e6a518 * audiodevinfo.cc: Minor style fixes.
John W. Eaton <jwe@octave.org>
parents: 19573
diff changeset
2167 || args(0).is_inline_function ());
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2168
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2169 if (is_function)
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
2170 error ("audioplayer: callbacks not yet implemented");
21055
5e00ed38a58b maint: Replace if/error/else paradigm with just if/error.
Rik <rik@octave.org>
parents: 20946
diff changeset
2171
5e00ed38a58b maint: Replace if/error/else paradigm with just if/error.
Rik <rik@octave.org>
parents: 20946
diff changeset
2172 recorder->set_y (args(0));
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2173 recorder->set_fs (args(1).int_value ());
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2174
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2175 switch (nargin)
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2176 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2177 case 3:
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2178 recorder->set_nbits (args(2).int_value ());
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2179 break;
19550
0083cc91bfaa * audiodevinfo.cc: Style fixes.
John W. Eaton <jwe@octave.org>
parents: 19549
diff changeset
2180
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2181 case 4:
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2182 recorder->set_nbits (args(2).int_value ());
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2183 recorder->set_id (args(3).int_value ());
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2184 break;
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2185 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2186
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2187 if (is_function)
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2188 recorder->init_fn ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2189 else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2190 recorder->init ();
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2191
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2192 retval = recorder;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2193 #endif
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2194 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2195 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2196
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
2197 #ifdef HAVE_PORTAUDIO
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
2198
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2199 static audioplayer *
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2200 get_player (const octave_value& ov)
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2201 {
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2202 const octave_base_value& rep = ov.get_rep ();
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2203
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2204 octave_base_value *ncrep = const_cast<octave_base_value *> (&rep);
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2205
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2206 audioplayer *pl = dynamic_cast<audioplayer *> (ncrep);
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2207 if (! pl)
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2208 error ("audiodevinfo.cc get_player: dynamic_cast to audioplayer failed");
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2209
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2210 return pl;
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2211 }
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2212
19526
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
2213 #endif
7f271cef5850 protect all portaudio and sndfile dependent code with #ifdefs
John W. Eaton <jwe@octave.org>
parents: 19519
diff changeset
2214
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2215 DEFUN_DLD (__player_get_channels__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2216 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2217 @deftypefn {} {@var{n} =} __player_get_channels__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2218 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2219 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2220 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2221 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2222 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2223 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2224 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2225 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2226 retval = get_player (args(0))->get_channels ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2227 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2228 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2229 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2230
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2231 DEFUN_DLD (__player_get_fs__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2232 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2233 @deftypefn {} {@var{fs} =} __player_get_fs__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2234 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2235 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2236 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2237 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2238 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2239 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2240 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2241 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2242 retval = get_player (args(0))->get_fs ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2243 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2244 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2245 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2246
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2247 DEFUN_DLD (__player_get_id__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2248 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2249 @deftypefn {} {@var{id} =} __player_get_id__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2250 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2251 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2252 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2253 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2254 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2255 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2256 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2257 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2258 retval = get_player (args(0))->get_id ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2259 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2260 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2261 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2262
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2263 DEFUN_DLD (__player_get_nbits__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2264 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2265 @deftypefn {} {@var{nbits} =} __player_get_nbits__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2266 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2267 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2268 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2269 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2270 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2271 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2272 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2273 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2274 retval = get_player (args(0))->get_nbits ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2275 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2276 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2277 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2278
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2279 DEFUN_DLD (__player_get_sample_number__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2280 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2281 @deftypefn {} {@var{n} =} __player_get_sample_number__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2282 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2283 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2284 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2285 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2286 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2287 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2288 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2289 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2290 retval = get_player (args(0))->get_sample_number ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2291 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2292 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2293 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2294
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2295 DEFUN_DLD (__player_get_tag__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2296 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2297 @deftypefn {} {@var{tag} =} __player_get_tag__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2298 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2299 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2300 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2301 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2302 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2303 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2304 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2305 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2306 retval = get_player (args(0))->get_tag ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2307 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2308 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2309 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2310
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2311 DEFUN_DLD (__player_get_total_samples__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2312 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2313 @deftypefn {} {@var{n} =} __player_get_total_samples__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2314 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2315 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2316 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2317 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2318 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2319 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2320 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2321 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2322 retval = get_player (args(0))->get_total_samples ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2323 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2324 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2325 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2326
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2327 DEFUN_DLD (__player_get_userdata__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2328 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2329 @deftypefn {} {@var{data} =} __player_get_userdata__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2330 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2331 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2332 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2333 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2334 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2335 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2336 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2337 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2338 retval = get_player (args(0))->get_userdata ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2339 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2340 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2341 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2342
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2343 DEFUN_DLD (__player_isplaying__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2344 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2345 @deftypefn {} {} __player_isplaying__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2346 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2347 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2348 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2349 octave_value retval;
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2350 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2351 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2352 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2353 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2354 retval = get_player (args(0))->isplaying ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2355 #endif
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2356 return retval;
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2357 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2358
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2359 DEFUN_DLD (__player_pause__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2360 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2361 @deftypefn {} {} __player_pause__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2362 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2363 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2364 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2365 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2366 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2367 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2368 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2369 get_player (args(0))->pause ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2370 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2371 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2372 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2373
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2374 DEFUN_DLD (__player_playblocking__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2375 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2376 @deftypefn {} {} __player_playblocking__ (@var{player})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2377 @deftypefnx {} {} __player_playblocking__ (@var{player}, @var{start})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2378 @deftypefnx {} {} __player_playblocking__ (@var{player}, [@var{start}, @var{end}])\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2379 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2380 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2381 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2382 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2383 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2384 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2385
19573
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
2386 audioplayer *player = get_player (args(0));
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
2387
2aaf6077eb3c avoid dereferencing null pointers in audio functions
John W. Eaton <jwe@octave.org>
parents: 19571
diff changeset
2388 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2389 {
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2390 player->playblocking ();
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2391 }
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2392 else if (args.length () == 2)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2393 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2394 if (args(1).is_matrix_type ())
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2395 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2396 RowVector range = args(1).row_vector_value ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2397
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2398 unsigned int start = range.elem (0) - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2399 unsigned int end = range.elem (1) - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2400
19515
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
2401 if (start > player->get_total_samples ()
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
2402 || start > end || end > player->get_total_samples ())
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
2403 error ("audioplayer: invalid range specified for playback");
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2404
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2405 player->set_sample_number (start);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2406 player->set_end_sample (end);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2407 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2408 else
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2409 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2410 unsigned int start = args(1).int_value () - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2411
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
2412 if (start > player->get_total_samples ())
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
2413 error ("audioplayer: invalid range specified for playback");
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2414
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2415 player->set_sample_number (start);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2416 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2417
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2418 player->playblocking ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2419 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2420
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2421 #endif
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2422
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2423 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2424 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2425
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2426 DEFUN_DLD (__player_play__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2427 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2428 @deftypefn {} {} __player_play__ (@var{player})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2429 @deftypefnx {} {} __player_play__ (@var{player}, @var{start})\n\
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2430 @deftypefnx {} {} __player_play__ (@var{player}, [@var{start}, @var{end}])\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2431 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2432 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2433 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2434 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2435 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2436 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2437
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2438 if (args.length () == 1)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2439 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2440 get_player (args(0))->play ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2441 }
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2442 else if (args.length () == 2)
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2443 {
19513
4cb4210bd392 use C++ style casts in audio code
John W. Eaton <jwe@octave.org>
parents: 19512
diff changeset
2444 audioplayer *player = get_player (args(0));
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2445
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2446 if (args(1).is_matrix_type ())
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2447 {
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2448 RowVector range = args(1).row_vector_value ();
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2449
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2450 unsigned int start = range.elem (0) - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2451 unsigned int end = range.elem (1) - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2452
19515
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
2453 if (start > player->get_total_samples ()
0f7788e2d677 * audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
John W. Eaton <jwe@octave.org>
parents: 19514
diff changeset
2454 || start > end || end > player->get_total_samples ())
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
2455 error ("audioplayer: invalid range specified for playback");
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2456
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2457 player->set_sample_number (start);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2458 player->set_end_sample (end);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2459 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2460 else
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2461 {
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2462 unsigned int start = args(1).int_value () - 1;
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2463
19514
ef6875adb053 * audiodevinfo.cc: Avoid warnings about comparision operations.
John W. Eaton <jwe@octave.org>
parents: 19513
diff changeset
2464 if (start > player->get_total_samples ())
20825
66cd994d1b79 eliminate return statements after calls to error
John W. Eaton <jwe@octave.org>
parents: 20812
diff changeset
2465 error ("audioplayer: invalid range specified for playback");
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2466
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2467 player->set_sample_number (start);
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2468 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2469
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2470 player->play ();
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2471 }
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2472
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2473 #endif
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2474
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2475 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2476 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2477
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2478 DEFUN_DLD (__player_resume__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2479 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2480 @deftypefn {} {} __player_resume__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2481 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2482 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2483 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2484 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2485 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2486 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2487 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2488 get_player (args(0))->resume ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2489 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2490 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2491 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2492
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2493 DEFUN_DLD (__player_set_fs__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2494 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2495 @deftypefn {} {} __player_set_fs__ (@var{player}, @var{fs})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2496 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2497 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2498 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2499 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2500 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2501 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2502 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2503 get_player (args(0))->set_fs (args(1).int_value ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2504 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2505 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2506 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2507
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2508 DEFUN_DLD (__player_set_tag__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2509 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2510 @deftypefn {} {} __player_set_tag__ (@var{player}, @var{tag})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2511 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2512 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2513 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2514 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2515 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2516 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2517 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2518 get_player (args(0))->set_tag (args(1).char_matrix_value ());
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2519 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2520 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2521 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2522
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2523 DEFUN_DLD (__player_set_userdata__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2524 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2525 @deftypefn {} {} __player_set_userdata__ (@var{player}, @var{data})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2526 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2527 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2528 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2529 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2530 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2531 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2532 if (args.length () == 2)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2533 get_player (args(0))->set_userdata (args(1));
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2534 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2535 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2536 }
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2537
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2538 DEFUN_DLD (__player_stop__, args, ,
19571
72304a4e010a Use Octave coding conventions for documentation of audio functions.
Rik <rik@octave.org>
parents: 19570
diff changeset
2539 "-*- texinfo -*-\n\
20853
1142cf6abc0d 2015 Code Sprint: remove class of function from docstring for all C++ files.
Rik <rik@octave.org>
parents: 20825
diff changeset
2540 @deftypefn {} {} __player_stop__ (@var{player})\n\
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2541 Undocumented internal function.\n\
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2542 @end deftypefn")
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2543 {
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2544 #ifndef HAVE_PORTAUDIO
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2545 NO_PORTAUDIO_MSG
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2546 #else
19519
e616c2830413 various style fixes for audio code
John W. Eaton <jwe@octave.org>
parents: 19518
diff changeset
2547 if (args.length () == 1)
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2548 get_player (args(0))->stop ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2549 #endif
20868
04748b009201 audiodevinfo.cc:code sprint: remove print_usage () in internal functions
Andreas Weber <andy.weber.aw@gmail.com>
parents: 20853
diff changeset
2550 return octave_value ();
19510
99522db5b911 merge audio source files
John W. Eaton <jwe@octave.org>
parents: 19509
diff changeset
2551 }