Olaf
Overly Lightweight Acoustic Fingerprinting
Toggle main menu visibility
Main Page
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
d
e
f
h
k
m
n
p
s
u
v
Variables
a
b
d
e
f
h
k
m
n
p
s
u
v
Files
File List
Globals
All
h
o
p
q
Functions
h
o
p
q
Variables
Typedefs
Enumerations
Macros
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Macros
Pages
Loading...
Searching...
No Matches
src
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
42
struct
fingerprint
{
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
63
struct
extracted_fingerprints
{
64
struct
fingerprint
* fingerprints;
65
size_t
fingerprintIndex;
66
};
67
74
typedef
struct
Olaf_FP_Extractor
Olaf_FP_Extractor
;
75
80
Olaf_FP_Extractor
*
olaf_fp_extractor_new
(
Olaf_Config
* config);
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
121
void
olaf_fp_extractor_print
(
struct
fingerprint
f);
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_config.h
Olaf configuration pramameters.
olaf_ep_extractor.h
Olaf event point extractor.
olaf_fp_extractor_destroy
void olaf_fp_extractor_destroy(Olaf_FP_Extractor *olaf_fp_extractor)
Definition:
olaf_fp_extractor.c:51
olaf_fp_extractor_extract
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
olaf_fp_extractor_hash
uint64_t olaf_fp_extractor_hash(struct fingerprint f)
Calculate a hash for a fingerprint.
Definition:
olaf_fp_extractor.c:92
olaf_fp_extractor_compare_fp
int olaf_fp_extractor_compare_fp(const void *a, const void *b)
A comparator to sort fingerprint hashes.
olaf_fp_extractor_print
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_new
Olaf_FP_Extractor * olaf_fp_extractor_new(Olaf_Config *config)
Definition:
olaf_fp_extractor.c:35
olaf_fp_extractor_total
size_t olaf_fp_extractor_total(Olaf_FP_Extractor *fp_extractor)
Returns the total number of extracted fingerprints.
Definition:
olaf_fp_extractor.c:62
Olaf_Config
Configuration parameters defining the behaviour of Olaf.
Definition:
olaf_config.h:48
Olaf_FP_Extractor
State information for the fingerprint extractor.
Definition:
olaf_fp_extractor.c:27
extracted_event_points
The result of event point extraction is a list of event points.
Definition:
olaf_ep_extractor.h:47
extracted_fingerprints
The result of fingerprint extraction: a list of fingerprints with a size.
Definition:
olaf_fp_extractor.h:63
fingerprint
A fingerprint is a combination of three event points each with a frequency bin, time bin and magnitud...
Definition:
olaf_fp_extractor.h:42
Generated by
1.9.6