/*
|
mediastreamer2 library - modular sound and video processing and streaming
|
Copyright (C) 2014 Belledonne Communications SARL
|
|
This program is free software; you can redistribute it and/or
|
modify it under the terms of the GNU General Public License
|
as published by the Free Software Foundation; either version 2
|
of the License, or (at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License
|
along with this program; if not, write to the Free Software
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
*/
|
|
#ifndef msutils_h
|
#define msutils_h
|
|
#include "mediastreamer2/mscommon.h"
|
|
|
#ifdef __cplusplus
|
extern "C"{
|
#endif
|
|
typedef void (*MSAudioDiffProgressNotify)(void* user_data, int percentage);
|
|
typedef struct _MSAudioDiffParams{
|
int max_shift_percent; /*percentage of overlap between the two signals, used to restrict the cross correlation around t=0 in range [1 ; 100].*/
|
int chunk_size_ms; /*chunk size in milliseconds, if chunked cross correlation is to be used. Use 0 otherwise.*/
|
}MSAudioDiffParams;
|
|
|
/**
|
* Utility that compares two PCM 16 bits audio files and returns a similarity factor between 0 and 1.
|
* @param ref_file path to a wav file contaning the reference audio segment
|
* @param matched_file path to a wav file contaning the audio segment where the reference file is to be matched.
|
* @param ret the similarity factor, set in return
|
* @param max_shift_percent percentage of overlap between the two signals, used to restrict the cross correlation around t=0 in range [1 ; 100].
|
* @param func a callback called to show progress of the operation
|
* @param user_data a user data passed to the callback when invoked.
|
* @return -1 on error, 0 if succesful.
|
**/
|
MS2_PUBLIC int ms_audio_diff(const char *ref_file, const char *matched_file, double *ret, const MSAudioDiffParams *params, MSAudioDiffProgressNotify func, void *user_data);
|
|
#ifdef __cplusplus
|
}
|
#endif
|
|
#endif
|