1 // Copyright (C) 2016  Lukas Lalinsky
2 // Distributed under the MIT license, see the LICENSE file for details.
3 
4 #ifndef CHROMAPRINT_AUDIO_FFMPEG_AUDIO_PROCESSOR_H_
5 #define CHROMAPRINT_AUDIO_FFMPEG_AUDIO_PROCESSOR_H_
6 
7 #ifdef HAVE_CONFIG_H
8 #include <config.h>
9 #endif
10 
11 #if defined(USE_SWRESAMPLE)
12 #include "audio/ffmpeg_audio_processor_swresample.h"
13 #elif defined(USE_AVRESAMPLE)
14 #include "audio/ffmpeg_audio_processor_avresample.h"
15 #else
16 #error "no audio processing library"
17 #endif
18 
19 #endif
20