summaryrefslogtreecommitdiff
path: root/src/portaudio-streams.ads
blob: 8acf758f136a19130d62c1b023e6da3d2b6461d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543


--  Programmed by Jedidiah Barber
--  Released into the public domain


pragma Ada_2012;


with

    Interfaces;

private with

    Interfaces.C,
    System;


package Portaudio.Streams is


    ---------------------------------
    --  Data Types and Structures  --
    ---------------------------------

    type Sample_Format is
       (Float_32_Format,
        Int_32_Format,
        Int_24_Format,
        Int_16_Format,
        Int_8_Format,
        UInt_8_Format);


    type Float_32 is new Float;
    for Float_32'Size use 32;
    type Float_32_Array is array (Positive range <>) of Float_32;

    type Int_32 is new Interfaces.Integer_32;
    type Int_32_Array is array (Positive range <>) of Int_32;

    type Int_24 is range -2 ** 23 .. 2 ** 23 - 1;
    for Int_24'Size use 24;
    type Int_24_Array is array (Positive range <>) of Int_24;

    type Int_16 is new Interfaces.Integer_16;
    type Int_16_Array is array (Positive range <>) of Int_16;

    type Int_8 is new Interfaces.Integer_8;
    type Int_8_Array is array (Positive range <>) of Int_8;

    type UInt_8 is new Interfaces.Unsigned_8;
    type UInt_8_Array is array (Positive range <>) of UInt_8;


    type Frame_Amount is new Interfaces.Unsigned_32;


    --  Acts as a wrapper around the arrays given above.
    --  This both avoids the use of void pointers, and also
    --  allows for easier reference to arrays by frame/channel.
    --  Since it is only a pointer wrapper, please ensure that
    --  every Buffer lives at least as long as any array used
    --  to make it.
    type Buffer is tagged private;

    function Kind
           (Store : in Buffer)
        return Sample_Format;

    function Channels
           (Store : in Buffer)
        return Natural;

    function Frames
           (Store : in Buffer)
        return Frame_Amount;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return Float_32
    with Pre => Store.Kind = Float_32_Format;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return Int_32
    with Pre => Store.Kind = Int_32_Format;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return Int_24
    with Pre => Store.Kind = Int_24_Format;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return Int_16
    with Pre => Store.Kind = Int_16_Format;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return Int_8
    with Pre => Store.Kind = Int_8_Format;

    function Get
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive)
        return UInt_8
    with Pre => Store.Kind = UInt_8_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in Float_32)
    with Pre => Store.Kind = Float_32_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in Int_32)
    with Pre => Store.Kind = Int_32_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in Int_24)
    with Pre => Store.Kind = Int_24_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in Int_16)
    with Pre => Store.Kind = Int_16_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in Int_8)
    with Pre => Store.Kind = Int_8_Format;

    procedure Put
           (Store   : in Buffer;
            Frame   : in Frame_Amount;
            Channel : in Positive;
            Value   : in UInt_8)
    with Pre => Store.Kind = UInt_8_Format;

    function Wrap
           (Store    : in Float_32_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);

    function Wrap
           (Store    : in Int_32_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);

    function Wrap
           (Store    : in Int_24_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);

    function Wrap
           (Store    : in Int_16_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);

    function Wrap
           (Store    : in Int_8_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);

    function Wrap
           (Store    : in UInt_8_Array;
            Frames   : in Frame_Amount;
            Channels : in Natural)
        return Buffer
    with Pre => Store'Length = Frames * Frame_Amount (Channels);


    type Parameters is private;

    function Create
           (Device   : in Device_Index;
            Channels : in Natural;
            Format   : in Sample_Format;
            Latency  : in Time)
        return Parameters
    with Pre => Device /= No_Device;


    type Stream_Flags is private;

    function "+"
           (A, B : in Stream_Flags)
        return Stream_Flags;

    --  No flags
    No_Flag           : constant Stream_Flags;

    --  Disable default clipping
    Clip_Off_Flag     : constant Stream_Flags;

    --  Disable default dithering
    Dither_Off_Flag   : constant Stream_Flags;

    --  Never drop input
    Never_Drop_Flag   : constant Stream_Flags;

    --  Prime output buffers using stream callback
    Prime_Output_Flag : constant Stream_Flags;


    type Audio_Stream is tagged limited private;


    type Stream_Info is record
        Input_Latency  : Time;
        Output_Latency : Time;
        Sample_Rate    : Hertz;
    end record;


    type Callback_Result is (Continue, Complete, Finish);


    type Time_Info is record
        Input_ADC  : Time;
        Current    : Time;
        Output_DAC : Time;
    end record;


    type Callback_Flags is record
        Input_Underflow  : Boolean;
        Input_Overflow   : Boolean;
        Output_Underflow : Boolean;
        Output_Overflow  : Boolean;
        Priming_Output   : Boolean;
    end record;


    --  Due to how void pointers are wrapped into Buffers,
    --  the Output here is given as 'in' mode, but you can
    --  still write to it just fine using the Put subprograms
    type Callback_Function is access function
           (Input   : in Buffer;
            Output  : in Buffer;
            Frames  : in Frame_Amount;
            Timing  : in Time_Info;
            Bunting : in Callback_Flags)
        return Callback_Result;




    ---------------
    --  Utility  --
    ---------------

    function Is_Open
           (Stream : in Audio_Stream)
        return Boolean;




    -----------------------
    --  API Subprograms  --
    -----------------------

    function Is_Format_Supported
           (Input  : access Parameters;
            Output : access Parameters;
            Rate   : in     Hertz)
        return Boolean;

    procedure Open_Input
           (Stream        : in out Audio_Stream;
            Input_Params  : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags;
            Callback      : in     Callback_Function)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Output
           (Stream        : in out Audio_Stream;
            Output_Params : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags;
            Callback      : in     Callback_Function)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Full
           (Stream        : in out Audio_Stream;
            Input_Params  : in     Parameters;
            Output_Params : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags;
            Callback      : in     Callback_Function)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Input_Blocking
           (Stream        : in out Audio_Stream;
            Input_Params  : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Output_Blocking
           (Stream        : in out Audio_Stream;
            Output_Params : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Full_Blocking
           (Stream        : in out Audio_Stream;
            Input_Params  : in     Parameters;
            Output_Params : in     Parameters;
            Sample_Rate   : in     Hertz;
            Buffer_Frames : in     Frame_Amount;
            Bunting       : in     Stream_Flags)
    with Pre => not Stream.Is_Open,
        Post => Stream.Is_Open;

    procedure Open_Default
           (Stream          : in out Audio_Stream;
            Input_Channels  : in     Natural;
            Output_Channels : in     Natural;
            Format          : in     Sample_Format;
            Sample_Rate     : in     Hertz;
            Buffer_Frames   : in     Frame_Amount;
            Callback        : in     Callback_Function)
    with Pre => not Stream.Is_Open and
            (Input_Channels > 0 or Output_Channels > 0),
        Post => Stream.Is_Open;

    procedure Open_Default_Blocking
           (Stream          : in out Audio_Stream;
            Input_Channels  : in     Natural;
            Output_Channels : in     Natural;
            Format          : in     Sample_Format;
            Sample_Rate     : in     Hertz;
            Buffer_Frames   : in     Frame_Amount)
    with Pre => not Stream.Is_Open and
            (Input_Channels > 0 or Output_Channels > 0),
        Post => Stream.Is_Open;

    procedure Close
           (Stream : in out Audio_Stream)
    with Pre => Stream.Is_Open,
        Post => not Stream.Is_Open;

    procedure Start
           (Stream : in Audio_Stream)
    with Pre => Stream.Is_Open;

    procedure Stop
           (Stream : in Audio_Stream)
    with Pre => Stream.Is_Open;

    procedure Term
           (Stream : in Audio_Stream)
    with Pre => Stream.Is_Open;

    function Is_Stopped
           (Stream : in Audio_Stream)
        return Boolean
    with Pre => Stream.Is_Open;

    function Is_Active
           (Stream : in Audio_Stream)
        return Boolean
    with Pre => Stream.Is_Open;

    function Get_Info
           (Stream : in Audio_Stream)
        return Stream_Info
    with Pre => Stream.Is_Open;

    function Get_Time
           (Stream : in Audio_Stream)
        return Time
    with Pre => Stream.Is_Open;

    function Get_CPU_Load
           (Stream : in Audio_Stream)
        return Load
    with Pre => Stream.Is_Open;

    procedure Read_Blocking
           (Stream : in Audio_Stream;
            Store  : in Buffer'Class;
            Frames : in Frame_Amount)
    with Pre => Stream.Is_Open and then Stream.Is_Active;

    procedure Write_Blocking
           (Stream : in Audio_Stream;
            Store  : in Buffer'Class;
            Frames : in Frame_Amount)
    with Pre => Stream.Is_Open and then Stream.Is_Active;

    function Get_Read_Available
           (Stream : in Audio_Stream)
        return Frame_Amount
    with Pre => Stream.Is_Open and then Stream.Is_Active;

    function Get_Write_Available
           (Stream : in Audio_Stream)
        return Frame_Amount
    with Pre => Stream.Is_Open and then Stream.Is_Active;

    function Get_Sample_Size
           (Format : in Sample_Format)
        return Positive;


private


    pragma Convention (C, Float_32_Array);
    pragma Convention (C, Int_32_Array);
    pragma Convention (C, Int_24_Array);
    pragma Convention (C, Int_16_Array);
    pragma Convention (C, Int_8_Array);
    pragma Convention (C, UInt_8_Array);


    type Buffer is tagged record
        My_Sam_Code : Interfaces.C.unsigned_long;
        My_Channels : Natural;
        My_Frames   : Frame_Amount;
        My_Array    : System.Address;
    end record;


    type Parameters is record
        My_Device   : Interfaces.C.int;
        My_Channels : Interfaces.C.int;
        My_Samples  : Interfaces.C.unsigned_long;
        My_Latency  : Interfaces.C.double;
        My_Specific : System.Address;
    end record with Convention => C;


    type Stream_Flags is new Interfaces.C.unsigned_long;

    No_Flag : constant Stream_Flags
    with Import => True, Convention => C, External_Name => "pa_no_flag";

    Clip_Off_Flag : constant Stream_Flags
    with Import => True, Convention => C, External_Name => "pa_clip_off";

    Dither_Off_Flag : constant Stream_Flags
    with Import => True, Convention => C, External_Name => "pa_dither_off";

    Never_Drop_Flag : constant Stream_Flags
    with Import => True, Convention => C, External_Name => "pa_never_drop_input";

    Prime_Output_Flag : constant Stream_Flags
    with Import => True, Convention => C,
        External_Name => "pa_prime_output_buffers_using_stream_callback";


    type Audio_Stream is tagged limited record
        Ptr   : System.Address;
        Open  : Boolean := False;
        Func  : Callback_Function;
        Chin  : Interfaces.C.int := 0;
        Chout : Interfaces.C.int := 0;
        Sin   : Interfaces.C.unsigned_long := 0;
        Sout  : Interfaces.C.unsigned_long := 0;
    end record;


    type C_Stream_Info is record
        My_Struct_Version : Interfaces.C.int;
        My_Input_Latency  : Interfaces.C.double;
        My_Output_Latency : Interfaces.C.double;
        My_Sample_Rate    : Interfaces.C.double;
    end record with Convention => C;


    type C_Callback_Time_Info is record
        My_Input_ADC  : Interfaces.C.double;
        My_Current    : Interfaces.C.double;
        My_Output_DAC : Interfaces.C.double;
    end record with Convention => C;


    function To_For_Sam
           (Num : in Interfaces.C.unsigned_long)
        return Sample_Format;

    function To_Cnum
           (Format : in Sample_Format)
        return Interfaces.C.unsigned_long;

    function To_Cint
           (Ret_Value : in Callback_Result)
        return Interfaces.C.int;


end Portaudio.Streams;