Advanced Audio Processing Flashcards

1
Q

Procedural Programming takes what approach?

A

Structural

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Arduino has this form of programming.

A

Procedural.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Procedural Programming is a series…

A

of functions, one leading to the next.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Is Procedural Programming flexible?

A

No.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Is Procedural Programming more or less abstraction?

A

Less. We dont know how it works

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which analogy can be referred to when considering Procedural Programming Abstraction?

A

TV Remote.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the second form of programming?

A

Object Oriented Programming.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In Object Oriented Programming, programs are…

A

divided into smaller sections called objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Object Oriented Programming is…

A

reusable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Is Object Oriented Programming more or less abstraction?

A

More. We can understand what happens better.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Is Object Oriented Programming more or less flexible?

A

More.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are a key part of Object Oriented Programming?

A

Classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are classes?

A

Blueprint for something.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What software similarly uses classes?

A

Unreal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What do classes do?

A

Encapsulatescomplex data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Classes allow you to define…

A

custom data types.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Classes can do what with other classes?

A

Inherit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What do classes contain? (4)

A

Data members of different types
Function members
Constructor
Destructor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What are classes in relation to objects?

A

Blueprints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is unique about a classes name?

A

Normally starts with capital letter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What files are classes made into?

A

.cpp and header

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is an object?

A

Instance of class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What are the three access modifiers?

A

Public
Private
Protected

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What is the default access modifier?

A

Private.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What does the protected access modifier do?

A

Only allows code with class to inherit from it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

Objects have… (2)

A

States and behaviours.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Where are object states stored?

A

in member variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

How does object expose behaviour?

A

Through member function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

What do member functions work on?

A

objects internal state.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

What is encapulation?

A

hiding the internal state of object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What are the key features of classes? (4)

A

Ease of debugging
Maintenance
Encapsulation
Reusability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What two things can be inherited?

A

States and Behaviours

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What is the largest umbrella class called?

A

Parent class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

Typical buffer range?

A

32 - 1024 samples

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Smaller buffer = ___ latency

A

Lower latency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

smaller buffer, ____ computational cost

A

Higher CPU cost.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What is the buffer tradeoff?

A

Dropout.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

What is dropout?

A

Buffers empties faster than it refills

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

Buffer uses…

A

FIFO.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

What are the two terms used for buffer input and output?

A

push and pop.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

What is audio callback?

A

Periodic function that processes audio.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

What is AudioBuffer?

43
Q

AudioBuffer contains…

A

a reference variable.

44
Q

AudioBuffer uses…

A

call by reference.

45
Q

AudioBuffer must be larger than…

A

the max amount of either input or output channels.

46
Q

What are the two types of reference parameters?

A

Call by Value
Call by Reference

47
Q

What does Call by Value do?

A

Copy OG data sent to function
Doesnt affect OG data

48
Q

What does Call by Reference do?

A

Has direct access to OG data
Will overwrite OG data

49
Q

What classes uses Call by Reference?

A

AudioBuffer.

50
Q

What is the difference between pure virtual and virtual?

A

Pure Virtual need defined.

51
Q

Subjects are…

A

Broadcasters.

52
Q

Observers are…

A

Listeners.

53
Q

Subjects send…

A

Updates to Observers when event occurs

54
Q

Functions should be…

A

small and do one thing.

55
Q

two examples of static delays

A

comb filter
slapback

56
Q

two examples of variable delays

A

flanger
vibrato

57
Q

max delay calc

A

buffer / SR * 1000

58
Q

min delay calc

A

1 / SR * 1000000

59
Q

what is max delay measured in?

A

milliseconds

60
Q

what is min delay measured in?

A

microseconds

61
Q

what type of data type causes artefacts in delay line?

A

int / whole numbers

62
Q

what is fractional delay?

A

allows precise float point number divisions on buffer samples

63
Q

what is interpolation?

A

technique to approximate values that lie between samples in buffer.

64
Q

How does linear interpolation work?

A

it draws a line between two points and takes approximationof half way point.

65
Q

Two pros of linear interpolation

A

improves sound of modulating delay line
computationally efficient

66
Q

Linear interpolation has audible effect on… (3)

A

Low pass filters
phase distortion
aliasing

67
Q

buffer modulation range must…

A

fall between min and max delay line values.

68
Q

sampling operation contains… (2)

A

write operation
read operation

69
Q

should read or write occur first during sampling operation?

70
Q

linear system changes

A

amplitude and phase

71
Q

in linear systems, the waveform is…

A

not modified

72
Q

examples of linear systems (3)

A

gain
panner
delay

73
Q

what is a non linear system?

A

changes waveform, adding additional frequency content

74
Q

examples of non linear systems (3)

A

compression
distortion
ring mod

75
Q

distortion is…

A

non linear

76
Q

as non linearity increases…

A

harmonic content increases

77
Q

what is half wave rectification?

A

all negative amplitude samples are changed to zero

78
Q

what is full wave rectification?

A

negative amplitude values are changed to identical positive values

79
Q

what harmonics is THD bases on?

80
Q

low THD means…

A

low distortion

81
Q

odd symmetrical=

A

only odd harmonics

82
Q

even symmetrical=

A

only even harmonics

83
Q

asymmetrical=

A

both harmonics

84
Q

distortion effect pros (2)

A

cheap to run
memoryless

85
Q

IIR (5)

A

feedback network
low latency
low cost
can be analogue
no linear phase filtering

86
Q

FIR (5)

A

no feedback network
high latency
high cost
only digital
linear phase filtering

87
Q

crossover filter criteria (3)

A

flat pass band with no distortion
max attenuation in stop band
output of filters should sum to flat response

88
Q

Butterworth meets…

A

all three criteria

89
Q

higher order filters have

A

steeper slopes

90
Q

how steep should filters be?

A

as steep as possible

91
Q

what is the butterworth issue? (2)

A

when crossed over, filters are completely out of phase
EQ boost at crossover

92
Q

What is the butterworth solution?

A

Linkwitz-Riley Filter

93
Q

How do you make a Linkwitz-Riley filter?

A

Two butterworth filters in series

94
Q

What response does Linkwitz Riley have?

95
Q

What does a detection path do?

A

Detects how much gain a signal should be reduced by

96
Q

What scale does the detection path work in?

97
Q

What process happens at the start of the detection path?

A

Linear to dB conversion

98
Q

What are threshold, ratio and knee known as?

A

Static characteristics

99
Q

Gain change doesn’t happen

A

Instantaneously

100
Q

Gain change consists of what two parameters?

A

Attack and release

101
Q

What process happens at the end of the detection path?

A

dB to linear conversion

102
Q

What is the full signal chain of the detection path?

A

Linear to dB, Static Characteristics, Gain Change, Gain Smoothing, dB to Linear