philippegorley / wavfile

Single header wav file writer
GNU General Public License v3.0
2 stars 1 forks source link

Use C++17's __has_include #3

Open philippegorley opened 2 years ago

philippegorley commented 2 years ago
philippegorley commented 2 years ago
#if __cplusplus >= 201703L
#ifndef WF_NO_AVFRAME
#if __has_include(<libavutil/AVFrame.h>)
#define WF_AVFRAME
#endif
#endif
#endif

#ifdef WF_AVFRAME
#include <libavutil/AVFrame.h>
#endif