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
use crate::{
    Result,
    Status,

    ffi,
    check_init,
    vec::{
        FVec,
        FVecMut,
    },
};

/**
 * Recognized note data
 */
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Note {
    pub pitch: f32,
    pub velocity: f32,
}

impl Note {
    fn parse(values: &[f32; 3]) -> Vec<Self> {
        let mut notes = Vec::new();

        if values[2] != 0.0 {
            notes.push(Self { pitch: values[2], velocity: 0.0 });
        }

        if values[0] != 0.0 {
            notes.push(Self { pitch: values[0], velocity: values[1] });
        }

        notes
    }
}

/**
 * Notes detection object
 */
pub struct Notes {
    notes: *mut ffi::aubio_notes_t,
    hop_size: usize,
}

impl Drop for Notes {
    fn drop(&mut self) {
        unsafe { ffi::del_aubio_notes(self.notes) }
    }
}

impl Notes {
    /**
     * Create notes detection object
     *
     * - `buf_size` Buffer size for phase vocoder
     * - `hop_size` Hop size for phase vocoder
     * - `samplerate` Sampling rate of the input signal
     */
    pub fn new(buf_size: usize, hop_size: usize, sample_rate: u32) -> Result<Self> {
        let notes = unsafe {
            ffi::new_aubio_notes(
                "default\0".as_ptr() as *const _,
                buf_size as ffi::uint_t,
                hop_size as ffi::uint_t,
                sample_rate as ffi::uint_t,
            )
        };

        check_init(notes)?;

        Ok(Self { notes, hop_size })
    }

    /**
     * Set notes detection silence threshold
     */
    pub fn with_silence(mut self, silence: f32) -> Self {
        self.set_silence(silence);
        self
    }

    /**
     * Set notes detection minimum inter-onset interval, in millisecond
     */
    pub fn with_minioi_ms(mut self, minioi: f32) -> Self {
        self.set_minioi_ms(minioi);
        self
    }

    /**
     * Set note release drop level, in dB
     */
    pub fn with_release_drop(mut self, release_drop: f32) -> Self {
        self.set_release_drop(release_drop);
        self
    }

    /**
     * Get hop size
     */
    pub fn get_hop(&self) -> usize {
        self.hop_size
    }

    /**
     * Execute note detection on an input signal frame
     *
     * - `input` Input signal of size `hop_size`
     * - `output` Output notes, fvec of length 3
     *
     * The notes output is a vector of length 3 containing:
     *
     * 0. the midi note value, or 0 if no note was found
     * 1. the note velocity
     * 2. the midi note to turn off
     */
    pub fn do_<'i, 'o, I, O>(&mut self, input: I, output: O) -> Status
    where
        I: Into<FVec<'i>>,
        O: Into<FVecMut<'o>>,
    {
        let input = input.into();
        let mut output = output.into();

        input.check_size(self.get_hop())?;
        output.check_size(3)?;

        unsafe { ffi::aubio_notes_do(self.notes, input.as_ptr(), output.as_mut_ptr()) }
        Ok(())
    }

    /**
     * Execute note detection on an input signal frame
     */
    pub fn do_result<'i, I>(&mut self, input: I) -> Result<Vec<Note>>
    where
        I: Into<FVec<'i>>,
    {
        let mut output = [0f32; 3];
        self.do_(input, output.as_mut())?;
        Ok(Note::parse(&output))
    }

    /**
     * Set notes detection silence threshold
     */
    pub fn set_silence(&mut self, silence: f32) {
        unsafe { ffi::aubio_notes_set_silence(self.notes, silence); }
    }

    /**
     * Get notes detection silence threshold
     */
    pub fn get_silence(&self) -> f32 {
        unsafe { ffi::aubio_notes_get_silence(self.notes) }
    }

    /**
     * Set notes detection minimum inter-onset interval, in millisecond
     */
    pub fn set_minioi_ms(&mut self, minioi: f32) {
        unsafe { ffi::aubio_notes_set_minioi_ms(self.notes, minioi); }
    }

    /**
     * Get notes detection minimum inter-onset interval, in millisecond
     */
    pub fn get_minioi_ms(&self) -> f32 {
        unsafe { ffi::aubio_notes_get_minioi_ms(self.notes) }
    }

    /**
     * Set note release drop level, in dB
     */
    pub fn set_release_drop(&mut self, release_drop: f32) {
        unsafe { ffi::aubio_notes_set_release_drop(self.notes, release_drop); }
    }

    /**
     * Get notes release drop level, in dB
     */
    pub fn get_release_drop(&self) -> f32 {
        unsafe { ffi::aubio_notes_get_release_drop(self.notes) }
    }
}