/usr/include/chromaprint.h is in libchromaprint-dev 1.4.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (C) 2010-2016 Lukas Lalinsky
// Distributed under the MIT license, see the LICENSE file for details.
#ifndef CHROMAPRINT_CHROMAPRINT_H_
#define CHROMAPRINT_CHROMAPRINT_H_
/**
* @mainpage Chromaprint
*
* @section intro Introduction
*
* Chromaprint is a library for generating audio fingerprints, mainly to be used with the <a href="https://acoustid.org">AcoustID</a> service.
*
* It needs raw audio stream (16-bit signed int) on input. The audio can have any sampling rate and any number of channels. Typically,
* you would use some native library for decoding compressed audio files and feed the result into Chromaprint.
*
* Audio fingerprints returned from the library can be represented either as
* base64-encoded strings or 32-bit integer arrays. The base64-encoded strings
* are usually what's used externally when you need to send the fingerprint
* to a service. You can't directly compare the fingerprints in such form.
* The 32-bit integer arrays are also called "raw fingerprints" and they
* represent the internal structure of the fingerprints. If you want to
* compare two fingerprints yourself, you probably want them in this form.
*
* @section generating Generating fingerprints
*
* Here is a simple example code that generates a fingerprint from audio samples in memory:
*
* @code
* ChromaprintContext *ctx;
* char *fp;
*
* const int sample_rate = 44100;
* const int num_channels = 2;
*
* ctx = chromaprint_new(CHROMAPRINT_ALGORITHM_DEFAULT);
*
* chromaprint_start(ctx, sample_rate, num_channels);
* while (has_more_data) {
* chromaprint_feed(ctx, data, size);
* }
* chromaprint_finish(ctx);
*
* chromaprint_get_fingerprint(ctx, &fp);
* printf("%s\n", fp);
* chromaprint_dealloc(fp);
*
* chromaprint_free(ctx);
* @endcode
*
* Note that there is no error handling in the code above. Almost any of the called functions can fail.
* You should check the return values in an actual code.
*/
#ifdef __cplusplus
extern "C" {
#endif
#if (defined(_WIN32) || defined(_WIN64))
# ifdef CHROMAPRINT_NODLL
# define CHROMAPRINT_API
# else
# ifdef CHROMAPRINT_API_EXPORTS
# define CHROMAPRINT_API __declspec(dllexport)
# else
# define CHROMAPRINT_API __declspec(dllimport)
# endif
# endif
#else
# if __GNUC__ >= 4
# define CHROMAPRINT_API __attribute__ ((visibility("default")))
# else
# define CHROMAPRINT_API
# endif
#endif
#include <stdint.h>
struct ChromaprintContextPrivate;
typedef struct ChromaprintContextPrivate ChromaprintContext;
struct ChromaprintMatcherContextPrivate;
typedef struct ChromaprintMatcherContextPrivate ChromaprintMatcherContext;
#define CHROMAPRINT_VERSION_MAJOR 1
#define CHROMAPRINT_VERSION_MINOR 4
#define CHROMAPRINT_VERSION_PATCH 2
enum ChromaprintAlgorithm {
CHROMAPRINT_ALGORITHM_TEST1 = 0,
CHROMAPRINT_ALGORITHM_TEST2,
CHROMAPRINT_ALGORITHM_TEST3,
CHROMAPRINT_ALGORITHM_TEST4,
CHROMAPRINT_ALGORITHM_TEST5,
CHROMAPRINT_ALGORITHM_DEFAULT = CHROMAPRINT_ALGORITHM_TEST2,
};
/**
* Return the version number of Chromaprint.
*/
CHROMAPRINT_API const char *chromaprint_get_version(void);
/**
* Allocate and initialize the Chromaprint context.
*
* Note that when Chromaprint is compiled with FFTW, this function is
* not reentrant and you need to call it only from one thread at a time.
* This is not a problem when using FFmpeg or vDSP.
*
* @param algorithm the fingerprint algorithm version you want to use, or
* CHROMAPRINT_ALGORITHM_DEFAULT for the default algorithm
*
* @return ctx Chromaprint context pointer
*/
CHROMAPRINT_API ChromaprintContext *chromaprint_new(int algorithm);
/**
* Deallocate the Chromaprint context.
*
* Note that when Chromaprint is compiled with FFTW, this function is
* not reentrant and you need to call it only from one thread at a time.
* This is not a problem when using FFmpeg or vDSP.
*
* @param[in] ctx Chromaprint context pointer
*/
CHROMAPRINT_API void chromaprint_free(ChromaprintContext *ctx);
/**
* Return the fingerprint algorithm this context is configured to use.
* @param[in] ctx Chromaprint context pointer
* @return current algorithm version
*/
CHROMAPRINT_API int chromaprint_get_algorithm(ChromaprintContext *ctx);
/**
* Set a configuration option for the selected fingerprint algorithm.
*
* DO NOT USE THIS FUNCTION IF YOU ARE PLANNING TO USE
* THE GENERATED FINGERPRINTS WITH THE ACOUSTID SERVICE.
*
* Possible options:
* - silence_threshold: threshold for detecting silence, 0-32767
*
* @param[in] ctx Chromaprint context pointer
* @param[in] name option name
* @param[in] value option value
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_set_option(ChromaprintContext *ctx, const char *name, int value);
/**
* Get the number of channels that is internally used for fingerprinting.
*
* @note You normally don't need this. Just set the audio's actual number of channels
* when calling chromaprint_start() and everything will work. This is only used for
* certain optimized cases to control the audio source.
*
* @param[in] ctx Chromaprint context pointer
*
* @return number of channels
*/
CHROMAPRINT_API int chromaprint_get_num_channels(ChromaprintContext *ctx);
/**
* Get the sampling rate that is internally used for fingerprinting.
*
* @note You normally don't need this. Just set the audio's actual number of channels
* when calling chromaprint_start() and everything will work. This is only used for
* certain optimized cases to control the audio source.
*
* @param[in] ctx Chromaprint context pointer
*
* @return sampling rate
*/
CHROMAPRINT_API int chromaprint_get_sample_rate(ChromaprintContext *ctx);
/**
* Get the duration of one item in the raw fingerprint in samples.
*
* @param[in] ctx Chromaprint context pointer
*
* @return duration in samples
*/
CHROMAPRINT_API int chromaprint_get_item_duration(ChromaprintContext *ctx);
/**
* Get the duration of one item in the raw fingerprint in milliseconds.
*
* @param[in] ctx Chromaprint context pointer
*
* @return duration in milliseconds
*/
CHROMAPRINT_API int chromaprint_get_item_duration_ms(ChromaprintContext *ctx);
/**
* Get the duration of internal buffers that the fingerprinting algorithm uses.
*
* @param[in] ctx Chromaprint context pointer
*
* @return duration in samples
*/
CHROMAPRINT_API int chromaprint_get_delay(ChromaprintContext *ctx);
/**
* Get the duration of internal buffers that the fingerprinting algorithm uses.
*
* @param[in] ctx Chromaprint context pointer
*
* @return duration in milliseconds
*/
CHROMAPRINT_API int chromaprint_get_delay_ms(ChromaprintContext *ctx);
/**
* Restart the computation of a fingerprint with a new audio stream.
*
* @param[in] ctx Chromaprint context pointer
* @param[in] sample_rate sample rate of the audio stream (in Hz)
* @param[in] num_channels numbers of channels in the audio stream (1 or 2)
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_start(ChromaprintContext *ctx, int sample_rate, int num_channels);
/**
* Send audio data to the fingerprint calculator.
*
* @param[in] ctx Chromaprint context pointer
* @param[in] data raw audio data, should point to an array of 16-bit signed
* integers in native byte-order
* @param[in] size size of the data buffer (in samples)
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_feed(ChromaprintContext *ctx, const int16_t *data, int size);
/**
* Process any remaining buffered audio data.
*
* @param[in] ctx Chromaprint context pointer
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_finish(ChromaprintContext *ctx);
/**
* Return the calculated fingerprint as a compressed string.
*
* The caller is responsible for freeing the returned pointer using
* chromaprint_dealloc().
*
* @param[in] ctx Chromaprint context pointer
* @param[out] fingerprint pointer to a pointer, where a pointer to the allocated array
* will be stored
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_get_fingerprint(ChromaprintContext *ctx, char **fingerprint);
/**
* Return the calculated fingerprint as an array of 32-bit integers.
*
* The caller is responsible for freeing the returned pointer using
* chromaprint_dealloc().
*
* @param[in] ctx Chromaprint context pointer
* @param[out] fingerprint pointer to a pointer, where a pointer to the allocated array
* will be stored
* @param[out] size number of items in the returned raw fingerprint
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_get_raw_fingerprint(ChromaprintContext *ctx, uint32_t **fingerprint, int *size);
/**
* Return the length of the current raw fingerprint.
*
* @param[in] ctx Chromaprint context pointer
* @param[out] size number of items in the current raw fingerprint
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_get_raw_fingerprint_size(ChromaprintContext *ctx, int *size);
/**
* Return 32-bit hash of the calculated fingerprint.
*
* See chromaprint_hash_fingerprint() for details on how to use the hash.
*
* @param[in] ctx Chromaprint context pointer
* @param[out] hash pointer to a 32-bit integer where the hash will be stored
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_get_fingerprint_hash(ChromaprintContext *ctx, uint32_t *hash);
/**
* Clear the current fingerprint, but allow more data to be processed.
*
* This is useful if you are processing a long stream and want to many
* smaller fingerprints, instead of waiting for the entire stream to be
* processed.
*
* @param[in] ctx Chromaprint context pointer
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_clear_fingerprint(ChromaprintContext *ctx);
/**
* Compress and optionally base64-encode a raw fingerprint
*
* The caller is responsible for freeing the returned pointer using
* chromaprint_dealloc().
*
* @param[in] fp pointer to an array of 32-bit integers representing the raw
* fingerprint to be encoded
* @param[in] size number of items in the raw fingerprint
* @param[in] algorithm Chromaprint algorithm version which was used to generate the
* raw fingerprint
* @param[out] encoded_fp pointer to a pointer, where the encoded fingerprint will be
* stored
* @param[out] encoded_size size of the encoded fingerprint in bytes
* @param[in] base64 Whether to return binary data or base64-encoded ASCII data. The
* compressed fingerprint will be encoded using base64 with the
* URL-safe scheme if you set this parameter to 1. It will return
* binary data if it's 0.
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_encode_fingerprint(const uint32_t *fp, int size, int algorithm, char **encoded_fp, int *encoded_size, int base64);
/**
* Uncompress and optionally base64-decode an encoded fingerprint
*
* The caller is responsible for freeing the returned pointer using
* chromaprint_dealloc().
*
* @param[in] encoded_fp pointer to an encoded fingerprint
* @param[in] encoded_size size of the encoded fingerprint in bytes
* @param[out] fp pointer to a pointer, where the decoded raw fingerprint (array
* of 32-bit integers) will be stored
* @param[out] size Number of items in the returned raw fingerprint
* @param[out] algorithm Chromaprint algorithm version which was used to generate the
* raw fingerprint
* @param[in] base64 Whether the encoded_fp parameter contains binary data or
* base64-encoded ASCII data. If 1, it will base64-decode the data
* before uncompressing the fingerprint.
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_decode_fingerprint(const char *encoded_fp, int encoded_size, uint32_t **fp, int *size, int *algorithm, int base64);
/**
* Generate a single 32-bit hash for a raw fingerprint.
*
* If two fingerprints are similar, their hashes generated by this function
* will also be similar. If they are significantly different, their hashes
* will most likely be significantly different as well, but you can't rely
* on that.
*
* You compare two hashes by counting the bits in which they differ. Normally
* that would be something like POPCNT(hash1 XOR hash2), which returns a
* number between 0 and 32. Anthing above 15 means the hashes are
* completely different.
*
* @param[in] fp pointer to an array of 32-bit integers representing the raw
* fingerprint to be hashed
* @param[in] size number of items in the raw fingerprint
* @param[out] hash pointer to a 32-bit integer where the hash will be stored
*
* @return 0 on error, 1 on success
*/
CHROMAPRINT_API int chromaprint_hash_fingerprint(const uint32_t *fp, int size, uint32_t *hash);
/**
* Free memory allocated by any function from the Chromaprint API.
*
* @param ptr pointer to be deallocated
*/
CHROMAPRINT_API void chromaprint_dealloc(void *ptr);
#ifdef __cplusplus
}
#endif
#endif
|