Olaf
Overly Lightweight Acoustic Fingerprinting
All Data Structures Files Functions Variables Typedefs Enumerations Macros Pages
olaf_fp_extractor.h
Go to the documentation of this file.
1// Olaf: Overly Lightweight Acoustic Fingerprinting
2// Copyright (C) 2019-2023 Joren Six
3
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU Affero General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU Affero General Public License for more details.
13
14// You should have received a copy of the GNU Affero General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
26#ifndef OLAF_FP_EXTRACTOR_H
27#define OLAF_FP_EXTRACTOR_H
28
29 #include "olaf_config.h"
30 #include "olaf_ep_extractor.h"
31 #include <stdint.h>
32
43 int frequencyBin1;
44 int timeIndex1;
45 float magnitude1;
46
47 int frequencyBin2;
48 int timeIndex2;
49 float magnitude2;
50
51 int frequencyBin3;
52 int timeIndex3;
53 float magnitude3;
54 };
55
64 struct fingerprint * fingerprints;
65 size_t fingerprintIndex;
66 };
67
75
81
86 void olaf_fp_extractor_destroy(Olaf_FP_Extractor * olaf_fp_extractor);
87
94 struct extracted_fingerprints * olaf_fp_extractor_extract(Olaf_FP_Extractor * olaf_fp_extractor,struct extracted_event_points * eps,int audioBlockIndex);
95
103 size_t olaf_fp_extractor_total(Olaf_FP_Extractor * fp_extractor);
104
105 //static methods:
106
114 uint64_t olaf_fp_extractor_hash(struct fingerprint f);
115
122
123 //to sort hashes use this comparator
124
133 int olaf_fp_extractor_compare_fp(const void * a, const void * b);
134
135#endif // OLAF_FP_EXTRACTOR_H
Olaf configuration pramameters.
Olaf event point extractor.
void olaf_fp_extractor_destroy(Olaf_FP_Extractor *olaf_fp_extractor)
Definition: olaf_fp_extractor.c:51
struct extracted_fingerprints * olaf_fp_extractor_extract(Olaf_FP_Extractor *olaf_fp_extractor, struct extracted_event_points *eps, int audioBlockIndex)
Definition: olaf_fp_extractor.c:372
uint64_t olaf_fp_extractor_hash(struct fingerprint f)
Calculate a hash for a fingerprint.
Definition: olaf_fp_extractor.c:92
int olaf_fp_extractor_compare_fp(const void *a, const void *b)
A comparator to sort fingerprint hashes.
void olaf_fp_extractor_print(struct fingerprint f)
Print a single fingerprint, mainly for debug purposes.
Definition: olaf_fp_extractor.c:147
Olaf_FP_Extractor * olaf_fp_extractor_new(Olaf_Config *config)
Definition: olaf_fp_extractor.c:35
size_t olaf_fp_extractor_total(Olaf_FP_Extractor *fp_extractor)
Returns the total number of extracted fingerprints.
Definition: olaf_fp_extractor.c:62
Configuration parameters defining the behaviour of Olaf.
Definition: olaf_config.h:48
State information for the fingerprint extractor.
Definition: olaf_fp_extractor.c:27
The result of event point extraction is a list of event points.
Definition: olaf_ep_extractor.h:47
The result of fingerprint extraction: a list of fingerprints with a size.
Definition: olaf_fp_extractor.h:63
A fingerprint is a combination of three event points each with a frequency bin, time bin and magnitud...
Definition: olaf_fp_extractor.h:42